body {
    background-color: rgb(243, 243, 243);
    margin: 0px;
    padding: 0px;
    font-family: 'Lato', sans-serif;
}

/* NAVBAR */
nav {
    height: 6rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 3.125rem;
    width: 95%;
}

button {
    background-color: rgb(237, 23, 74);
    border-radius: 10% / 50%;
    border: 0px;
}

nav>Ol {
    width: 18.75rem;
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    font-size: x-large;
    font-weight: bold;
}

li {
    display: flex;
    align-items: center;
    justify-content: center;
}

#buzz {
    color: red;
}


/* FIN NAVBAR */
/* FORMULAIRE */
header {
    display: flex;
    justify-content: center;

}

header>div {
    padding: 1rem;
    width: 38.75rem;
    height: 40rem;
    background-color: white;
    margin-top: 2.5rem;
    border: 1px ridge;
    display: flex;
    flex-direction: column;
}

header>div>form {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

header>div>form>input {
    width: 100%;
    height: 2rem
}

textarea {
    width: 100%;
}

#submit {
    height: 2rem;
    width: 7rem;
    background-color: red;
    color: white;
    border: none;
}

h1 {
    font-size: 3rem;
}

/* FIN FORMULAIRE */
/* RESPONSIVE */
@media (max-width: 756px) {
    nav>div>a img {
        max-width: 15rem;
        padding: 0px;
    }
}

@media (max-width: 500px) {
    nav>div>a img {
        max-width: 10rem;
    }

    nav>ol>li {
        font-size: 1rem;
    }
    nav>ol>li img{
        max-width: 1rem;
    }
    nav{
        padding: 0rem 1.125rem;
    }
}