* {
    margin: 0;
    padding: 0;
    text-align: center;
}


#heading {
    height: 70px;
    color: white;
    background-color: #081b31;
    line-height: 70px;
}

#choice-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.choice {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin-top: 90px;
    margin-bottom: 70px;
    object-fit: cover;
    display: flex;
    transition: transform 0.45s, box-shadow 0.45s;
}

.choice:hover {
    transform: rotate(-90deg);
    cursor: pointer;
}

.score-board {
    display: flex;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
}

.score-user {
    width: 20px;
    margin-right: 45px;
}

.score-comp {
    width: 20px;
}

#user-point {
    font-size: 38px;
}

#comp-point {
    font-size: 38px;
}

.result {
    display: flex;
    justify-content: center;
    margin-left: 32px;
    transition: transform 0.45s, box-shadow 0.45s;
}

#res-board {
    height: 42px;
    width: 300px;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    color: white;
    background-color: #081b31;
    border: none;
    border-radius: 10px;
    line-height: 42px;
}

