*{
    padding: 0;
    margin: 0;
}
a{
    color: black;
    text-decoration: none;
}
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;
    list-style-type: none;
}
.hero img{
    width: 100%;
}
.about{
    background-color: white;
    padding: 30px;
    text-align: center;
}
.about h2{
    font-size: 36px;
    margin-bottom: 20px;
}
.menu{
    background-color: rgb(255, 231, 186);
    padding: 30px;
    text-align: center;
}
.menu h2{
    font-size: 36px;
    margin-bottom: 20px;  
}
.menu p{
    margin-bottom: 20px;
}
aside{
    background-color: black;
    color: white;
    padding: 30px;
    text-align: center;
}
aside h2{
    font-size: 36px;
    margin-bottom: 20px;
}
aside p{
    margin-bottom: 20px;
}
aside img{
    width: 150px;
}
aside .btn{
    display: inline-block;
    background-color: white;
    padding: 20px 80px;
    border: 5px solid orange;
    border-radius: 100px;
}
footer{
    background-color: white;
    text-align: center;
    padding: 10px;
}