*{
    margin: 0;
    padding: 0;
    text-align: center;
}
h1{
    background-color: rgb(2, 2, 98);
    color: white;
    height: 5rem;
    line-height: 5rem;
}
h2{
    background-color: rgb(2, 2, 98);
    color: white;
    height: 5rem;
    line-height: 5rem;
    font-style:oblique;
}
.choice{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.choice:hover{
    opacity: 0.5;
    cursor: pointer;
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin: 3rem;
}
.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 4rem;
    gap: 4rem;
}
#user-score,#opponent-score{
    font-size: 4rem;
}
.msg-container{
    margin-top: 5rem;
}
#msg{
    justify-content: center;
    align-items: center;
    background-color: black;
    color: aliceblue;
    font-size: 2rem;
    margin-top: 5rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}
body {
    background: linear-gradient(-45deg, #ff00cc, #3333ff, #00ffcc, #ffcc00);
    background-size: 400% 400%;
    animation: neonBackground 10s ease infinite;
    min-height: 100vh;
}
@keyframes neonBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

