html, body {
    margin: 0;
    padding: 0;
    background-color: #FFFCF8;
    color: #432000;
    user-select: none;
    font-family: "Happy Monkey", system-ui;
    font-weight: 400;
    font-style: normal;

}


.container {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin: 30px auto;
}

img {
    width: 150px;
    margin: 0 auto;
}

input {
    background-color: #FBF2E4;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: "Happy Monkey", system-ui;
    margin: 10px 0;
}

::placeholder{
    color: #432000;
}


button {
    color: #FDFDFD;
    background-color: #492205;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: "Happy Monkey", system-ui;
}

button:hover {
    background-color: #432000;
    cursor: pointer;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul li {
    font-size: 20px;
    background-color: #FBF2E4;
    padding: 15px;
    border-radius: 8px;
    flex-grow: 1;
    text-align: center;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2)
}

ul li:hover {
    background-color: #FFECC7;
    cursor: pointer;
}