

head



nav>ul{
display: flex;
justify-content: center;
gap: 50px;
margin: 10px, 0 px; 
}

main{
height: 500px;
background-color: aqua;
}
main>ul{
    background-color: bisque;
    display:flex;
    height: 450px;
    flex-direction:row;
    list-style-type: none;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap
}

main>ul>li{
    font-size: larger;
    font-weight: 900;
    background-color: orange;
    height: 100px;
    width: 100px;
}



