html {
    background-color: black;
    color: white;
    font-family: customFont;
}

@font-face {
    font-family: customFont;
    src: url("../fonts/Remnant-Regular.ttf");
}

#studioName {
    text-align: center;
    padding: 10%;
    font-size: 500%;
    margin-top: 10%;
}

.linkz {
    text-align: center;
    display: flex;
    margin-top: -10%;
    justify-content:space-evenly;
}

.linkz a {
    text-decoration: none;
    color: white;
    font-size: larger;
}

.linkz a:active {
    color: white;
}

a:hover {
    color: wheat;
}

footer {
    text-align: center;
    margin-top: 12%;
}

footer a {
    text-decoration: none;
    color: white;
    font-size: small;
}

#studioName:hover {
    color: red;
}

