body {
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4rem;
}
.container div{
    display: flex;
    align-items: center;
    justify-content: center;
    
    flex-direction: column;

}
#score-el{
    height: 100px;
    width: 100px;
    
    background-color: #0009;
    font-size: 52px;

    color: white;
}
#score-el-guest{
    height: 100px;
    width: 100px;
    
    background-color: #0009;
    font-size: 52px;

    color: white;
}

.container h3{
    font-size: 42px;
}

#buttons{
    margin-top: 10px;
    display: inline;
    
}
#buttons button{
    width: 50px;
    height: 50px;
}