body {
    font-family: "Consolas", "Courier New", monospace;
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.2), 0 0 10px rgba(0, 255, 0, 0.2), 0 0 20px rgba(0, 255, 0, 0.2), 0 0 40px rgba(0, 255, 0, 0.2);  
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #0d0d0d;
    overflow: hidden; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 25%;
    width: 100%;
    z-index: 10;
}

a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.email {
    display: none;
}

.graph-container {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin-top:10vh;
}

.graph {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0px, #224818 0%, #224818 3px, rgba(0, 0, 0, 0) 0px), linear-gradient(90deg, rgba(0, 0, 0, 0) 0px, #224818 0%, #224818 3px, rgba(0, 0, 0, 0) 0px); 
    background-size: 4em 2em, 4em 2em;
    background-color: #0d0d0d;
    height: 30em;
    perspective: 2000px;
    margin-top: 20em;
    transform: perspective(200px) rotateX(45deg) scale(3);
    animation: moveGrid 200s linear infinite;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100% 0, 100% 0;
    }
}

.blink {
    animation: blink-animation 1s steps(2, start) infinite;
    -webkit-animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
