* {
    margin: 0;
    padding: 0;
}

.header {
    background-color: #081b31;
    color: white;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 25px;
}

.user-choice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.choice img {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(8, 27, 49, 0.6);
    cursor: pointer;
}

.score-board {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-top: 3rem;
    gap: 5rem;
}

#user-score,
#comp-score {
    font-size: 4rem;

}

.msg-container {
    margin-top: 5rem;
    text-align: center;
}

#msg {
    background-color: #081b31;
    color: #fff;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}

.reset-container {
    margin-top: 2rem;
    text-align: center;
}

#reset-btn {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #ff416c,
        #ff4b2b
    );

    border: none;
    border-radius: 50px;

    box-shadow:
        0 8px 20px rgba(255, 75, 43, 0.45);

    cursor: pointer;
    transition: all 0.25s ease;
}


#reset-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(255, 75, 43, 0.65);
}

#reset-btn:active {
    transform: translateY(0);
    box-shadow:
        0 6px 15px rgba(255, 75, 43, 0.5);
}

