* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#container {
    display: flex;
    justify-content: center;
    background-color: black;
    height: 100%;
    align-items: center;
    flex-direction: column;
}

.logo {
    color: gainsboro;
    font-size: 8.0rem;
    font-weight: bold;
    margin: 0.4rem 0 0.4rem 0;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    opacity: 1;
}

.logo_l {
    transition: opacity 230ms ease-in-out;
    animation: fadeOut 1s ease-in 1s;
}

.logo_t {
    transition: opacity 230ms ease-in-out;
    animation: fadeOut 1s ease-in 1.3s;
}



.logo_l:hover, .logo_t:hover {
    opacity: 0;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
    }
}