* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Poppins";
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

button {
    -webkit-focus-ring-color: transparent;
    -webkit-tap-highlight-color: transparent;

    cursor: pointer;
    border: 0;
    outline: 0;
}

h1 {
    text-align: center;
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

/* Choices */

.choices {
    display: grid;
    gap: 3rem;
    margin: 3rem 0;
}

@media screen and (min-width: 768px) {
    .choices {
        grid-template-columns: repeat(3, 1fr);
        margin: 6rem 0;
        gap: 5rem;
    }
}

.choice {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    transition: transform 0.4s ease;
}

@media screen and (min-width: 768px) {
    .choice {
        width: 170px;
        height: 170px;
    }
    .choice:hover {
        transform: scale(1.1);
    }
}

#rock {
    background-image: url(Images/rock.png);
}

#paper {
    background-image: url(Images/paper.png);
}

#scissors {
    background-image: url(Images/scissors.png);
}

/* Result */

.result-container {
    display: flex;
    align-items: center;
    background-color: black;
    border-radius: 20px;
    color: white;
    font-size: 2rem;
    gap: 1.5rem;
    margin: 1rem 2rem 3rem;
    padding: 1rem 3.5rem;
}

@media screen and (min-width: 768px) {
    .result-container {
        font-size: 2.2rem;
        margin-top: 0;
    }
}

/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation: fadeIn 1s ease;
}

.emoji {
    font-size: 3rem;
}

/* Score Board */

.score-board-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

@media screen and (min-width: 768px) {
    .score-board-container {
        margin-top: 2rem;
    }
}

.score-board {
    display: flex;
    font-size: 2rem;
    gap: 4rem;
    margin-top: 1rem;
}

.score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#score-user,
#score-computer {
    font-size: 5rem;
    font-weight: bold;
}
