.section{
    display: flex;
    flex-direction: row;
    /* justify-content:space-between; */

    /* flex-direction: column; */
    align-items: stretch;

}

.box{
    width:100px;
    display: inline-block;
    height: 100px;
    /* margin-right: 100px; */
    /* margin: 0 auto; */
}

p{
    display:inline-block;
}

.box1 {

background-color: blue;
}

.box2 {
        /* display: none; */
background-color: rgb(255, 0, 204);
}

.box3 {
background-color: rgb(47, 255, 0);
}

.box4 {
background-color: rgb(255, 0, 60);
}

.box5 {
background-color: rgb(0, 0, 0);
color: white;
}




body{
    margin: 0;
    padding: 0;
    width: 100%;
}


.header, .footer{
    background-color: rgb(58, 252, 4);
    height: 20vh;
}

.aside{
    background-color: bisque;
    width: 15vw;
}

.nav{
    background-color: aquamarine;
    width: 15vw;
}
.main{
    width: 70vw;
}
.mainSection{
    display:flex;
    flex-direction: row;
    height: 60vh;
}

.btn{
    /* display: block; */
    width: 150px;
    margin: 0 auto;
}

.btn:hover{
scale: 1.5;
background-color: blue;
/* border-radius: 50%; */
color: red;
}

.container{
    display: flex;
}

ul{
    margin-top: 50px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* text-align: center; */
    
}

/* li:last-child{
    background-color: rgb(10, 124, 86);
} */

/* li:not(:last-child){
    background-color: rgb(10, 124, 86);
} */

/* li:nth-child(5){
    background-color: rgb(10, 124, 86);
} */

/* li:nth-child(2n + 1){
    background-color: rgb(10, 124, 86);
} */

/* li:nth-child(2n){
    background-color: rgb(10, 124, 86);
} */

/* li:nth-child(3n){
    background-color: rgb(10, 124, 86);
} */


li{
    /* width: 30px;
    height: 30px; */
    border: 1px solid black;
    border-radius: 50%;
    padding: 10px;
}