*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #1E293B;
    --bright-green: #BEF264;
    --dark-orange: #B45309;
    --off-white: #E0E7FF;
}

body {
    background-color: var(--dark-blue);
    text-align: center;
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 30px 0 20px;
    font-family: 'Honk', sans-serif;
}

.score-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    font-family: 'Langar', sans-serif;
}

.score-count {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 30px 0;
}

#player-score {
    color: green;
}

#computer-score {
    color: red;
}

h2 {
    padding: 10px;
}

.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 70%;
}

#Rock,
#Paper,
#Scissors {
    width: 7em;
    height: 7em;
    border-radius: 40%;
    margin: 30px 0;
}

#Rock:hover,
#Paper:hover,
#Scissors:hover {
    cursor: pointer;
    transform: scale(1.1);
}

#Rock {
    background-color: var(--dark-orange);
}

#Paper {
    background-color: var(--off-white);
}

#Scissors {
    background-color: var(--bright-green);
}

#Rock img,
#Scissors img {
    width: 80%;
}

#Paper img {
    width: 100%;
    border-radius: 40%;
}

#results {
    font-family: 'Langar', sans-serif;
}

#winner {
    margin-top: 25px;
    font-family: 'Langar', sans-serif;
}

#reset-game {
    display: none;
    margin: 20px auto;
    width: 6em;
    height: 3em;
    border-radius: 10px;
}

#reset-game:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: green;
    color: white;
}