html {
    height: 100%;
}

body {
    font-family: 'Courier New', monospace;
    background-color: rgb(15 23 42);
    height: 99%;
}

a {
    color: #3CBF6E;
}

.hero {
    color: white;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.wrapper {
    width: 70%;
    text-align: center;
    font-size: 5vmin;
}

.logo {
    width: 100%;
    margin-bottom: 50px;
    animation: 2s ease-in-out 2s 1 forwards svg-flicker-on,
        2s ease-in-out 4s infinite alternate svg-glow;
}

@keyframes svg-flicker-on {
    0% { filter: drop-shadow(0 0 0 #3CBF6E); }
    2% { filter: drop-shadow(0 0 3px #3CBF6E); }
    4% { filter: drop-shadow(0 0 0 #3CBF6E); }
    6% { filter: drop-shadow(0 0 3px #3CBF6E); }
    8% { filter: drop-shadow(0 0 0 #3CBF6E); }
    10% { filter: drop-shadow(0 0 3px #3CBF6E); }
    100% { filter: drop-shadow(0 0 3px #3CBF6E); }
}

@keyframes svg-glow {
    from {
        filter: drop-shadow(0 0 3px #3CBF6E);
    }
    
    to {
        filter: drop-shadow(0 0 6px #3CBF6E);
    }
}

.contact {
    margin-top: 60px;
    font-size: 3.5vmin;
}

@media (min-width: 1024px) {
    .logo {
        width: 500px;
    }

    .wrapper {
        width: 50%;
        font-size: 4vmin;
    }

    .contact {
        font-size: 2.5vmin;
    }
}