* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
}

section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

#terminal {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    padding: 20px;
    white-space: pre-wrap;
}

#title {
    background-color: #333;
    color: #fff;
}

#introduction {
    flex-direction: column;
    background-color: #ccc;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#education {
    background-color: #333;
    color: #fff;
}

#job-history {
    background-color: #ccc;
    color: #333;
}

#stack {
    background-color: #333;
    color: #fff;
}

#projects {
    background-color: #ccc;
    color: #333;
}

.quote-box {
    max-width: 55vh;
    margin: 0 auto;
    margin-top: 2vh;
    padding: 25px;
    border: 2px solid #333;
    border-radius: 12px;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    font-size: 1.6vh;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#contact {
    background-color: #333;
    color: #fff;
    text-align: center;
}

#contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    letter-spacing: 2px;
}

.email {
    font-family: 'Courier New', Courier, monospace;
    padding: 0.5vh;
    border: 1px solid #fff;
    border-radius: 10px;
    font-size: 2vh;
}
.nav {
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    color: #fff;
    padding: 1vh;
    z-index: 100;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-item a{
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    text-shadow: #333 2px 2px 2px;
    text-decoration: dashed;
    margin: 10px;
    font-size: 1.5vh;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #0f0;
}

.nav-item a.active {
    color: #0f0;
    font-weight: bold;
}

#cursor {
    display: inline-block;
    width: 10px;
    background-color: #0f0;
    animation: blink 0.6s steps(2) infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .nav {
        position: fixed;
        margin-top: 2vh;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding: 10px;
        background-color: #333;
        z-index: 1000;
    }

    .nav-item a {
        font-size: 3vw;
        text-shadow: none;
    }

    section {
        padding-top: 60px;
    }
}