* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #011530;
}

nav>ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    padding: 1.5%;
    opacity: 90%;
}

h1 {
    padding: 5%;
    text-align: center;
    margin: 10% 10% 0%;
    color: white;
    font-family: "Bowlby One", sans-serif;
    font-weight: bolder;
    font-style: italic;
    font-size: 8vh;
}

a {
    color: white;
    text-decoration: none;
    font-family: "Bowlby One", sans-serif;
    font-weight: bold;
    font-style: none;
    font-size: 2vh;
}

a :hover {
    color: black;
    text-decoration: underline;
}

.button {
    
}
@media screen and (min-width: 800px) {

    h1 {
        font-size: 10vh;
    }
}