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

body {
    font-family: Arial, sans-serif;
}

h1 {
    background-color: #081b31;
    color: white;
    height: 5rem;
    line-height: 5rem;
    font-size: 3rem;
}

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

.choice {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.choice:hover {
    background-color: #081b31;
    cursor: pointer;
    transform: scale(1.1);
}

img {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

.msg-container {
    margin-top: 2rem;
}

#msg {
    background-color: #081b31;
    color: white;
    font-size: 1.5rem;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
}

/* Responsive Design */

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

    .choices {
        gap: 2rem;
        margin-top: 3rem;
    }

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

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

    .score-board {
        gap: 2rem;
        font-size: 1.2rem;
    }

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

    #msg {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 450px) {
    h1 {
        font-size: 2rem;
        height: 3.5rem;
        line-height: 3.5rem;
    }

    .choices {
        /* flex-direction: column; */
        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: 1rem;
    }

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

    #msg {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

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