html, body{
    background-color: #FFFDD0;
    font-family: "Inter", sans-serif;
    
    margin: 0;
    padding: 0;
    
    color: #432000;
    user-select: none;
}

.container{
    display: flex;
    flex-direction: column;

    max-width: 350px;
    min-width: 350px;
    margin: 30px auto;

    align-items: center;
}

img {
    height: 200px;
    width: auto;
}

input {
    font-size: 25px;
    text-align: center;
    font-family: "Inter", sans-serif;
    color: white;
    
    margin: 20px 0;
    padding: 10px 0;

    border: 0;
    border-style: none;
    border-radius: 8px;

    background-color: #b1b9c6;

    width: 338px;
    
}

::placeholder {
    color: white;
}

button {
    font-size: 25px;
    text-align: center;
    color: white;

    padding: 10px 105px;
    
    border-style: none;
    border-radius: 8px;

    background-color: #fd80a6;
}

button:hover {
    background-color: hsl(342, 97%, 60%);
    cursor: pointer;
}

ul {
    align-items: center;
    list-style: none;

    display: flex;
    flex-wrap: wrap;

    padding: 0;
    gap: 8px;
}

ul li {
    font-size: 25px;
    text-align: center;
    
    flex-grow: 1;

    color: whitesmoke;

    background-color: #65e1e9;

    border-radius: 8px;

    padding: 10px 15px;

    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2)
}

ul li:hover{
    background-color:hsl(40, 100%, 75%);
    cursor: pointer;
}