*{
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #ffd8f5;
}

h1{
    background-color: #170407;
    color: #fff;
    height: 6rem;
    line-height: 6rem;
}

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

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

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

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

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

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

.msg-container{
    margin-top: 5rem;
}
.msg-container:hover{
    cursor: pointer;
}

#msg{
    background-color: #170407;
    color: #fff;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}

/* Tablet view */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        height: 5rem;
        line-height: 5rem;
    }

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

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

    .choices {
        gap: 2rem;
    }

    .score-board {
        gap: 4rem;
        font-size: 1.8rem;
    }

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

    #msg {
        font-size: 1.6rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Mobile view */
@media (max-width: 492px) {
    h1 {
        font-size: 1.6rem;
        height: 4rem;
        line-height: 4rem;
    }

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

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

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

    .score-board {
        flex-direction: column;
        gap: 1.5rem;
        font-size: 1.4rem;
        margin-top: 2rem;
    }

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

    #msg {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
}
/* Small Mobile view */
@media (max-width: 364px) {
    h1 {
        font-size: 1.2rem;
        line-height: 3rem;
        height: auto;
        text-align: center;
    }

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

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

    #msg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    #msg-container{
        font-size: 0.9rem;
    }

    .choices {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .choice img {
        height: 60px;
        width: 60px;
    }
}