* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    color: #00cc66;
    text-shadow: 0 0 10px #00cc66;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    min-width: 100vw;
    min-height: 100vh;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

p {
    font-size: clamp(0.875rem, 1vw, 1rem);
}

pre {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
}

@keyframes scanlines {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 50%;
    }
}

.crt {
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    background: linear-gradient(to top, #000000, #000000, #002200, #002200);
    background-size: cover;
    background-size: 100% 4px;
    animation: scanlines 10s steps(60) infinite;
    filter: brightness(1.2);
}

.vignette-overlay {
    min-width: 100vw;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(rgba(0,0,0,0) 90%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}


#boot-sequence {
    padding: 2rem;
}

.hero-container {
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.hero-heading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 10px;
}

#flicker-text {
    opacity: 1;
    transition: opacity 0.1s;
}

.navigation {
    display: flex;
    justify-content: space-around;
    align-content: center;
    padding: 20px 0px 20px 0px;
    position: sticky;
    top: 0;
}

.website-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-container {
    min-height: 100vh;
    width: 75%;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.project-card {
    border: 1px solid #00cc66;
    padding: 15px 20px 15px 20px;
    flex-basis: 0 0;
}

.about-container {
    height: 100vh;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 10px;
}

.contact-container {
    height: 100vh;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 10px;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 20px 10px;
}

.footer-content p {
    text-align: center;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
    }
}
