*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    background-color: brown;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    color:white;
}
nav{
    background-color:#574b90;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    color:white;
}
nav ul{
    list-style: none;
}
nav ul li{
    display: inline-block;
    margin: 0 10px;
}
nav a{
    color: #fff;
    text-decoration:none ;
    font-size: 18px;
}
section{
    display: flex;
    justify-content: space-between;
}
div{
    background: #786fa6;
    flex-basis: 60%;
    padding:25px 30px;
}
aside{
    background: #f7d794;
    flex-basis: 38%;
    padding:25px 30px;
}
aside ul{
    margin-left: 18px;
    margin-top: 10px;
}
footer{
    margin-top: 10px;
    background-color: #596275;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    color:white;
}
#hero{background-color: #546de5;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    color:white;
    height: 300px;
flex-direction: column;
align-items: center;
justify-content: center;
}
#hero h2{
    font-size: 25px;
    margin-bottom: 10px;
}
#hero a{
    background: #63cdda;
    color: white;
    display:inline-block;
    padding: 10px 25px;
    margin-top: 15px;

}