#teams{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;

    /* position: absolute; */
    /* bottom:0; */
}

.team{
    border-radius: 10px;
    border: solid 2px black;
    width:fit-content;
    padding: 10px;
    margin: 10px;
    background-color: rgb(200, 200, 200);
    height:fit-content;
}
.team>*{
    margin:0;
}
.teamName{
    font-weight: bold;
    font-size: 3vmin;
    text-align: center;
}
.teamScore{
    /* font-weight: bold; */
    font-style: italic;
    font-size: 2.8vmin;
    text-align: center;
}