body{
    margin: 0;
}
/* header, main, aside, nav, footer{
    border-style: solid;
    border-collapse: collapse;
    border-color: black;
} */
header{
    width: 100;
    height: 20vh;
}
nav{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(to right, darkorange, orange, yellow)
}
main > p {
    margin-left: 20px;
}
main{
    width: calc(100% - 30px);
    height: 68vh;
    padding-left: 30px;
}
section{
    width: 50%;
    height: calc(100% - 40px);
    border-radius: 20%;
    background-image: linear-gradient(to right, darkorange, orange, yellow);
    margin: 17px;
}
aside{
    width: 30%;
    height: calc(100% - 40px);
    float: right;
    margin: 17px;
    border-radius: 20%;
    background-color: coral;
}
aside > * {
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
}
footer{
    width: 100%;
    height: 2vh;
    text-align: center;
    background-image: linear-gradient(to right, darkorange, orange, yellow)
}
button{
    border: 1px;
    border-color: black;
    border-style: solid;
    border-radius: 60px;
    width: 12%;
    height: 25%;
    margin: auto;
    overflow: hidden;
    font-size: 15px;
    background-color: brown;
    color: antiquewhite;
}

.body2{
    margin: 0;
}
.header2{
    width: 100;
    height: 20vh;
}
.nav2{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(to right, darkorange, orange, yellow)
}
.main2{
    width: 100%;
    height: 65vh;
}
.footer2{
    width: 100%;
    height: 2vh;
    text-align: center;
}