* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #FFFDD0;
}

h1 {
    background-color: #301934;
    color: #fff;
    height: 5rem;
    line-height: 5rem;
    padding: 0 1rem;
}

.choices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

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

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

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

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

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

.msg-container {
    margin-top: 3rem;
    padding: 0 1rem;
}

#msg {
    margin-top: 3rem;
    background-color: #301934;
    color: #fff;
    font-size: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
    max-width: 100%;
    word-wrap: break-word;
}

/* Responsive Breakpoints */
@media screen and (max-width: 768px) {
    h1 {
        height: 4rem;
        line-height: 4rem;
        font-size: 1.5rem;
    }

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

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

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

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

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

    #msg {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .choices {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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