@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 20px;
    background: url('images/1000_F_137859733_pXgeGB53l3VKrr0WxF3elF1E5Nuhs2DY.jpg') no-repeat center center/cover;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    padding: 5px;
    border-radius: 15px;
    max-width: 90%;
    width: 500px;
}

h1 {
    background-color: #ffd500;
    filter: blur(0.7px);
    color: #000;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    transition: 0.3s;
    border: 2px solid black ;
}

h1:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background-color: #000;
    color: #fff;
}

.choices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.choice {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.choice:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.choice img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
}

.score-board {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

#user-score,
#comp-score {
    font-weight: bold;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

#msg {
    font-weight: bold;
    background: #ffd500;
    filter: blur(0.7px);
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 5px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    border: 2px solid black;
}

#msg:hover {
    color: rgb(255, 255, 255);
    background: #000000;
}
p{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

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

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

    .score-board {
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .choice {
        height: 100px;
        width: 100px;
    }

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

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