* {
    padding: 0px;
    margin: 0px;
}


/* BODY */
body {
    font-family: sans-serif;
    background-color: rgb(246, 232, 124);
}

 /* HEADER */
header {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-size: 32px;
}

header h1 {
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    font: inherit;
    font-weight: 600;
    font-size: 25px;
    padding: 5px;
    height: 50px;
    width: 150px;
    border-radius: 5px;
    background-color: rgb(233, 232, 232);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

button:hover {
    background-color: white;
}

/* CONTENT */
.content {
    display: flex;
    justify-content: center;
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 50px;
    background-color: peachpuff;
    border: 1px solid rgb(48, 36, 18);
    flex-wrap: wrap;
    height: 700px;
    width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    gap: 0px;
}


#container div {
    background-color: peachpuff;
    flex: 1 1 auto;
    box-sizing: border-box;
}

