body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    min-height: 100vh;
    background-image: linear-gradient(180deg, #88bdbc 0%, #254e58 100%);
}

.screen {
    display: flex;
    justify-content: center;
    gap: 300px;
    width: 100%;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.playerImg,
.computerImg {
    background-color: #2e6966;
    border-style: solid;
    display: flex;
    gap: 15px;
}

.playerScreen,
.computerScreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.playerScore,
.computerScore {
    margin-bottom: 5px;
    font-size: 18px;
}

.roundContainer {
    font-size: 30px;
}

.roundResults {
    height: 200px;
    width: 300px;
    margin-bottom: 50px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

#compRock,
#compPaper,
#compScissors {
    opacity: 0.5;
}

#rock,
#paper,
#scissors {
    opacity: 0.5;
}

.playerImg {
    cursor: pointer;
}

.playerIcon:hover {
    transform: translateY(-7px);
}

#rock:hover,
#paper:hover,
#scissors:hover {
    opacity: 1;
}

.resetGame {
    visibility: hidden;
}

button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

button:hover {
    background-color: #254e58;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
}