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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.c-header{
    width: 100%;
    display: flex;
    font-family: 'Oswald', sans-serif;
    flex-direction: row;
    align-content: center;
    align-items: center;
    font-size: 2em;
    text-transform: uppercase;
    justify-content: center;
}
.c-header img{
    width: 100px;
}


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

    width: 100%;
    display: table; 

}

.container .row{
    /* display: grid; */
    /* grid-template-columns: 2fr repeat(13,1fr); */
    border-bottom: 1px solid black;
    /* gap:0.5rem; */

    display: table-row; 
   
}




.container .row:nth-child(odd) {
    background-color: #8f30715e;
}
.container .row:nth-child(even) {
    background-color: #a29bfe;
}



.container .row:nth-child(8) {
    background-color: #ff7675;
}
.container .row:nth-child(9) {
    background-color: #ff7675;
}
.container .row:nth-child(10) {
    background-color: #ff7675;
}


.container .row:hover {
    background-color: #e15f41;
}

.counter{
    display: flex;
    flex-direction: row;
    justify-content: center;
   
}

.counter button{
    width: 20px;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.counter input{
   width: 40px;
}

.team_cell{
    text-align: center;
    padding: 10px 10px;
    text-align: center;
    display: table-cell;
    border-bottom: 1px solid rgb(65, 65, 65);
}



.number_input{
    text-align: center;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}


.total_score_cell{
    font-weight: bold;
}