html, body, header{ /*Fill the white gaps and keep things centered*/
    margin: 0;
    padding: 0;
    text-align: center;    
}
#navigation{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        background: #cfb97e;
}
.navLink{
	font-family: "Bitcount Grid Single", system-ui;
	color: black;
}
.navLink:hover{
	color: white;
}
#aniTitle{
        font-size: 70px;
        font-family: "Bitcount Grid Single", system-ui;
        margin: 25px;
        animation: fadeIn 2s 1;
}
/*For souly the contact page*/
#formContainer{
    border-radius: 25px;
    background-color: #7c8296;
    padding: 20px;
    margin-top: 120px;
    max-width: 750px;
    width: 100%;
    display: inline-block;
}
#formText{
    font-size: 30px;
    font-family: "Bitcount Grid Single", system-ui;
    color: white;
}
#formSubText{
    font-size: 15px;
    color: white;
}
.textInput{
    background-color: #383f45;
    color: white;
    border-width: 3px;
}
#content{
    margin-top: 5px;
    min-width: 200px;
    max-width: 200px;
    min-height: 150px;
    max-height: 150px;
    background-color: #383f45;
    color: white;
    border-width: 3px;
}
#submitButton{
    margin-top: 5px;
    border-width: 2px;
    background-color: #383f45;
    color: white;
}
@media (max-width: 940px) {
    #formContainer{
        max-width: 300px;
    }
    #aniTitle{
        margin: 0;
    }
}
