@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
#introductionAnimation {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    background-color: #000;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: light;
}

.introductionTextCenter {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -51%);
    text-align: center;
}

.socialsAlignment {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -25%);
    text-align: center;
}

.socialsAlignment ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.socialsAlignment ul li {
    display: inline;
    margin: 0;
    padding: 0;
}

.socialsAlignment ul li a img {
    width: 5vw;
    height: 5vw;
    max-width: 35px;
    max-height: 35px;
    margin: 0;
    padding: 0;
    margin-right: 10px;
    margin-left: 10px;
}

#introductionTextCenter #introductionTitle {
    font-size: 5em;
    margin: 0;
    padding: 0;
    font-family: "Pixelify Sans", sans-serif;
    color: #fff;
    margin: 0;
    opacity: 0;
}

#introductionTextCenter #introductionSubtext {
    font-size: 1.8em;
    margin: 0;
    padding: 0;
    font-family: "VT323", monospace;
    color: #c3f566;
    margin: 0;
    opacity: 0;
}

#introductionImage {
    filter: brightness(8%);
    opacity: 0;
}

.fadeout {
    animation: fadeout 1s;
}
@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.imageFadein:hover {
    animation: imageFadein 0.4s;
}

.imageFadein {
    animation: imageFadeOut 0.4s;
    animation-fill-mode: forwards;  
}

@keyframes imageFadein {
    0% {
        filter: brightness(40%);
    }
    100% {
        filter: brightness(100%);
    }
}

@keyframes imageFadeOut {
    100% {
        filter: brightness(40%);
    }
}