*{
    margin: 0px;
    padding: 0px;
    text-align: center;
    box-sizing: border-box;
}
body{
    background: linear-gradient(
        to bottom,
        #ffffff ,
        #a3b0d4 
    );
    height:100%;
    overflow:hidden;
}
h1{
    padding: 1.2rem;
    font-size: 3.5rem;
    background-color: #081b31;
    color: #ffffff;
    height: 6rem;
    line-height: 5rem;
}
.choices{
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.choice.selected {
    background-color: #081b31;
    border: 4px solid #fff;
}

.choice:hover{
    cursor: pointer;
    background-color: #081b31;
    transform: scale(1.08);
}
.choice{
    margin: 40px;
    border-radius: 50%;
    height: 230px;
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 25px rgba(0, 0,0, 0.15);
    transition: transform 0.2s ease,background-color 0.3s ease;
}

.choice:active {
    transform: scale(0.95);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

img{
    height: 210px;
    width: 210px;
    object-fit: cover;
    border-radius: 50%;
}
.score-board{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    gap: 5rem;
}
.score{
    margin: 20px;
}
#user-score,#comp-score{
    font-size: 4rem;
}
.msg-container{
    margin-top: 2rem;
    margin-bottom:2rem;

}
#msg{

    background-color: #081b31;
    color: #ffffff;
    display: inline-block;
    font-size:2rem;
    padding: 1rem;
    border-radius: 10px;
    min-width: 300px;
    transition: background-color 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: popIn 0.4s ease;

}
@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 768px) {
     body {
    overflow: auto;
     }
    .choices {
        flex-direction: column;
        gap: 1.5rem;
    }

    .choice {
        height: 160px;
        width: 160px;
    }

    img {
        height: 140px;
        width: 140px;
    }
}
