@import url('https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap');

body{
    background-color: #EBE6D2;
    font-family: "Inika", serif;
}

container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 500px;
    margin: auto;
}

h1{
    font-size: 1.25rem;
    color: #E31217;
    text-align: center;
    width: 100%;
}

#Attacker, #Defensor{
    width: 50%;
}
#Result, #SentencesContainer{
    width: 100%;
}

h2{
    font-size: 1rem;
    text-align: center;
}

ul{
    list-style: none;
    margin-block: 0;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    max-height: 8rem;
    gap: 10px;
}

li{
    width: 3.5rem;
    background-color: white;
    text-align: center;
    padding: 4px;
    font-size: 0.9rem;
    border-radius: 7px;
    margin: auto;
    border: solid 2px white;
    cursor: pointer;
    text-transform: capitalize;
}

li.active {border: solid 2px #C2B274;}

select{
    display: block;
    margin: 16px auto;
    width: 70px;
    text-align: center;
    border-radius: 5px;
}

textarea {
    resize: none;
    width: -webkit-fill-available;
    margin: 40px 10%;
    height: 13ch;
    font-size: 0.75rem;
}

button{
    background-color: #E21217;
    border: none;
    border-radius: 7px;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 6px 28px;
    margin: auto;
    width: fit-content;
    cursor: pointer;
}