html, body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #f1f2f3;
    color: #432000;
    user-select: none;
}

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

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

input {
    color: #432000;
    background-color: #DCE1EB;
    border: 0;
    padding: 15px;
    margin-top: 30px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    margin: 30px 0 12px 0;
    outline: none;
}

button {
    color: #FDFDFD;
    background-color: #4A3ED0;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
}

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


#player{
    transform: translateX(20px);
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    text-align: center;
    /* align-items: center; */
    justify-content: center;
    /* margin-bottom: 20px; */
    font-size: 19px;
    font-weight: 100;
}

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

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