@font-face {
    font-family: 'Nunito';
    src: url(fonts/Nunito-VariableFont_wght.ttf);
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url(fonts/Nunito-Italic-VariableFont_wght.ttf);
    font-style: italic;
}
body {
    background-color: black;
    color: white;
    margin: 0;
    min-height: 100vh;
}
.content {
    margin: 8px;
}
.title {
    margin: auto;
    padding: 8px 20px 0px 0px;
    font-size: 72px;
    padding-left: 20px;
}
.button {
    background-color: white;
    color: black;
    width: 200px;
    height: 54px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 24px;
    transition-duration: 0.15s;
    border-radius: 5px;
}
button:hover {
    background-color: black;
    color: white;

}
footer {
    text-align: center;
    margin: 16px auto;
    background-color: black;
}
footer p {
    margin: 0;
}
h1 {
    font-family: 'Nunito';
    font-weight: 100;
    text-transform: uppercase;
    margin: auto;
}
h2 {
    font-size: 24px;
    font-family: 'Nunito';
    font-weight: 400;
    text-transform: uppercase;
}
p {
    font-family: 'Nunito';
    font-weight: 200;
}
a {
    font-family: 'Nunito';
    font-weight: 400;
    color: white;
}
nav {
    padding: 20px 8px 20px 0px;
    background-color: white;
    font-size: 20px;
    position: sticky;
    top: 0;
}
nav a {
    float: left;
    font-size: 20px;
    padding-left: 20px;
    color:black;
    font-weight: 350;
}
nav p {
    float:left; 
    margin: 0; 
    padding-left: 20px; 
    color: black; 
    font-weight: 500; 
    font-size: 20px;
}
@media screen and (max-width: 649px) {
    nav p {
        font-size: 0px;
    }
}
@media screen and (min-width: 650px) {
    nav p {
        font-size: 20px;
    }
}
