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

body {
    background-color: #6fb1fd;
}

h1 {
    background-color: black;
    color: white;
    height: 5rem;
    line-height: 5rem;
}

.choice {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.choice:hover {
    cursor: pointer;
    background-color: #081b31;
}

img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    box-shadow: 0 0 1rem rgba(0, 0, 0 , 0.9);
    border-radius: 50%; 
}

.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.score-board {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    font-size: 2rem;
}

#user-score,
#comp-score {
    font-size: 4rem;
}

.msg-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#msg {
    background-color: black;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    width: 30rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
        height: 4rem;
        line-height: 4rem;
    }

    .choices {
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }

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

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

    .score-board {
        flex-direction: column;
        gap: 1rem;
        font-size: 1.2rem;
    }

    #user-score,
    #comp-score {
        font-size: 2rem;
    }

    #msg {
        width: 90%;
        font-size: 1.2rem;
        padding: 0.8rem;
    }
}