*{
    margin:0;
    padding:0;
    font-family: "work-sans", sans-serif;
}

.flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1{
    font-size: 15vw;
    padding: 5vw;
    font-family: "afronaut";
    text-align: center;
}

nav ul {
    display: flex;
    /* max-width: 600px; */
    width: 90vw;
    margin: auto;
    justify-content: center;
    align-items: center;
}

nav ul li{
    list-style-type: none;
    font-size: 1.2rem;
    padding: 16px;
}

a{
    text-decoration: none;
    color: gray;
}

a:hover{
    text-decoration: none;
    color: black;
    font-style: italic;
}

a:active{
    text-decoration: none;
    color: black;
}