body {
  font-family: 'M PLUS 1p', sans-serif;
}
header {
        background-color: white;
        padding: 30px;
        text-align: center;
}
header h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
header nav ul {
    display: flex;
    justify-content: space-around;
}
.hero img {
    width: 75%;
    margin: auto;
    display: block
}
.about {
    background-color: whitesmoke;
    padding: 30px;
    text-align: center;
}
.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about p {
    line-height: 1.6;
    margin-bottom: 20px
}
.menu {
    background-color: aqua;
    width: 75%;
    margin: auto;
        padding: 30px;
    text-align: center
} 
.menu h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.menu p {
    font-weight: 700;
    margin-bottom: 20px;
}
aside {
    width: 75%;
    margin: auto;
     display: block
    text-align: center;
    background-color: black;
    color: white;
    text-align: center;
    padding: 30px;
}
aside h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
aside p {
    margin-bottom: 20px;
    line-height: 1.6
}
aside img {
    width: 150px;
    margin-bottom: 30px;
}
aside .btn {
    display: inline-block;
    background-color: white;
    padding: 20px 80px;
    border: 5px solid green;
    border-radius: 20px;
    color: black;
}
footer {
    background-color: white;
    text-align: center;
    padding: 10px;
}












