

h1{
    background-color: black;
    text-align: center;
    font-size: 40px;
    color: red;
    padding: auto;
    margin: auto;
    
}

nav > ul{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 10px 0px ;
}

main{
    height: 500px;
    background-color: aquamarine;
}


main > ul{
    background-color: bisque;
    display: flex;
    height: 450px;
    flex-direction: flex;
    list-style-type: none;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
}

main > ul > li{
    font-size: larger;
    font-weight: 900;
    background-color: orange;
    height: 100px;
    width: 100px;
}
