/*Page Structure starts here*/
body /*Body of the page*/
{
    font-family: 'Inter', sans-serif;
    background-color: #0f111a;
    color: #94a3b8;
}

.mono /*Mono*/
{
    font-family: 'Fira Code', monospace;
}

.glow-text /*Terminal glowing text */
{
    color: #22d3ee;
    /* Cyan */
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}


.project-card/*Glowing card*/
{
    background: #1e293b;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.project-card:hover/*Glowing card hover*/
{
    border-color: #22d3ee;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
    transform: translateY(-5px);
}


.cursor/*Typewriter style cursor*/
{
    display: inline-block;
    width: 8px;
    height: 18px;
    background-color: #22d3ee;
  animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 4px;
}
/*Page structure ends here*/

/*Animations start here*/
@keyframes blink
{
    50% {
        opacity: 0;
    }
}
/*Animations end here*/