* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Nunito Sans", sans-serif;
    background-image: url("/assets/14350820_5471985.jpg");
    background-repeat: no-repeat;
    background-size: auto;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    padding: 1rem 2rem;
    gap: 2rem;

    @media (min-width: 768px) {
        justify-content: space-between;
        flex-direction: row;
    }
}

a {
    margin: 0 auto;
    text-decoration: none;
    color: black;
    text-align: center;
}

ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 2rem;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

main {
    background-color: white;
    margin: 4rem auto;
    padding: 1rem;
    font-weight: 400;
    width: 15rem;
    display: flex;
    justify-content: center;
}

h1 {
    font-weight: 400;
}
