* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    /* overflow: hidden; */
}

body {
    background-color: rgb(254, 244, 231);
}

h1 {
    color: rgb(255, 255, 255);
    background-color: rgb(205, 169, 102);
    text-align: center;
    font-size: 60px;
    font-family: 'Courier New', Courier, monospace;
    margin: 50px;
    border: black solid 3px;
    border-radius: 30px;
    padding: 10px;
}

main{
    height: 500px;
}

main>ul{
    list-style-type: none;
    height: 450px;
background-color: rgb(170, 80, 212);

display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px 40px;
flex-wrap: wrap;
align-content: center;
}

main>ul>li{
background-color: orange;
font-size: larger;
font-weight: 900;
height: 100px;
width: 100px;
}

footer {
    background-color: aliceblue;
    height: 100px;
}