*{
    margin: 0;
    padding: 0;
}

h1{
    text-align: center;
    background-color: #280A3E;
    color:#fff;
    font-size: 4rem;
}

.choices{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.choice:hover{
    background-color: #280A3E;
    cursor: pointer;
}

img{
    width:155px;
    height:155px;
    display: flex;
    border-radius: 50%;
    object-fit: cover;
    justify-content: center;
    align-items: center;
}

.choice{
    width:165px;
    height:165px;
    display: flex;
    border-radius: 50%;
    object-fit: cover;
    justify-content: center;
    align-items: center;
}

.scoreboard{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding-top: 3rem;
    gap: 5rem;
    text-align: center;
}

.msgcontainer, .restartcontainer{
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#msg,#restart{
    background-color: #280a28;
    padding: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 1rem;
}

#restart:hover{
    cursor: pointer;
}