body {
    font-size: 1.5rem;
    background-color: black;
    color: white;
    font-family: sans-serif;
    padding: 0 1rem 2rem;
    margin: 0;
}

.fa {
    color: white;
}

.games-display {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.rps-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 3px 5px black;
    text-decoration: underline;
    margin-bottom: 1rem;
}

.first_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.computerMove {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.computerMove p,
.userPick {
    font-size: 2rem;
    margin: 0;
}

.com-move,
.userChoice button {
    background-color: transparent;
    border: none;
    font-size: 8vw;
    cursor: pointer;
}

.score-screen {
    background-color: rgb(224, 14, 63);
    border: 0.3rem solid black;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    min-width: 250px;
}

.userMove {
    border: 0.5rem solid white;
    border-radius: 2rem;
    margin: 2rem 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.key-direction {
    font-size: 1rem;
    text-align: center;
}

.user-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.userChoice {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    flex-wrap: wrap;
}

.reset-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.reset-section button {
    background-color: white;
    color: black;
    font-weight: 700;
    border-radius: 5rem;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
}

.reset-section button:hover {
    background-color: blue;
    color: white;
}

.rps-back {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 10rem;
    height: 3rem;
    border-radius: 5rem;
    background-color: rgba(127, 127, 243, 0.788);
    font-weight: 700;
    font-size: 1rem;
    border: none;
}

.rps-back:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
}

@media (max-width: 600px) {
    .user-section {
    flex-direction: column;
    gap: 1rem;
    }

    .score-screen {
    width: 100%;
    }
}