*{
    font-family: "Quicksand";
    color: wheat;
    font-size: 3vh;
}

body, html {
    margin: 0;
    padding: 0;
}

@keyframes TextRise {
    from{
        transform: translateY(150%);
    }
    to{
        transform: translateY(1%);
    }

}

@keyframes textGrow {
    from{
        color: wheat;
    }
    to{
        color: whitesmoke;
        transform: scale(1.2);
    }
    
}
#pcGIF{
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    width: 35vh;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: 0;
}

a {
    font-weight: bolder;
    text-decoration: none;
    font-size: 3vh;
}

a:hover {
    animation: textGrow 0.3s ease-in;
    animation-fill-mode: forwards;
}

a:active {
    color: lightcyan;
}

div.headContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

div.header {
    padding-top: 0;
    background-color:#223136;
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    padding-left: 2vh;
    gap: 3vh;
    
}


body{
    background-color: darkslategrey;
}


div.containerMain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation: TextRise 0.5s ease-in 1 forwards;
}
div.containerMain > h1 {
    font-size: 9vh;
    margin-bottom: 0;
}

div.containerMain > h3 {
    font-size: 3vh;
}

@media screen and (max-width: 600px){
    div.containerMain > h1 {
        font-size: 6vh;
        margin-bottom: 0;
    }
    
    div.containerMain > h3 {
        font-size: 2vh;
    }
    #pcGIF{
        width: 23.4vh;
    }
    a{
        font-size: 2vh;
    }
}