body{
    background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.heading-container{
    display: flex;
    justify-content: center;
    border-bottom: 2px solid black;
}

.choices{
    display: flex;
    justify-content: center;
    gap: 50px;
}
.choice{
    height: 200px;
    width: 200px;
}

img{
    margin-top: 25px;
    height: 150px;
    width: 150px;
    object-fit:cover;
    border-radius: 80px;  
}

img:hover{
    border: 4px solid black;
    opacity: 0.8;
    cursor: pointer;
}
.score-container{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    line-height: 20px;
    gap: 4rem;
    margin-top: -15px;
}
#user-score,#comp-score{
    font-size: 2.5rem;
    margin-left: 50px;
}
#comp-score{
    margin-left: 80px;
}
.text-screen{
    margin-top: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
}
.text-screen p{
    text-align: center;
    border-radius: 15px;
    padding: 12px;
    background-color: black;
    color: white;
}
.btn-cont{
    display: flex;
    justify-content: center;
}
button{
    font-size: 1.2rem;
    background-color: #fff;
    border: 3px solid black;
    padding: 10px;
    border-radius: 15px;
}
button:hover{
    background-color: #cbcaca;
    cursor: pointer;
}

@media (max-width: 600px) {
    #msg{
        font-size: 1.5rem;
    }
    .score-container{
        font-size: 1.3rem;
        gap: 2rem;
    }
    #user-score,#comp-score{
        font-size: 2rem;
        margin-left: 50px;
    }
    .choice img{
        height: 120px;
        width: 120px;
    }
}

@media (max-width: 490px) {
    .choices{
        gap: 7px;
    }
}

@media (max-width:400px) {
    .choices{
        flex-wrap: wrap;
    }
    .choice{
        height: 130px;
        width: 130px;
    }
    .score-container{
        margin-top: 20px;
    }
}