* {
    font-family: sans-serif;
}

body {
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

header {
    width: 100vw;
}

.pizza_img {
    width: 100%;
    display: block;
}

nav {
    width: 100%;
    background-color: blanchedalmond;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
    padding-right: 25px;
}

nav ul li a {
    text-decoration: none;
    color: black;
}


footer {

    background-color: aquamarine;
    width: 100vw;
}

footer ul {
    margin: 30px;
}

footer ul li {
    list-style: none;
    margin-top: 15px;
}

footer ul li a {
    text-decoration: none;
    color: black;

}

.article_footer {
    background-color: white;
}