html {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    font-family: inherit;
}

body {
    background: linear-gradient(180deg, #182a56 0%, #6600ff 100%);
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

button {
    cursor: pointer;
}

.title {
    font-size: 48px;
    color: #eee;
    margin-top: 48px;
    text-align: center;
}

.display {
    font-size: 32px;
    color: #ddd;
    margin-top: 32px;
    text-align: center;
}

.choices {
    margin-top: 96px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.choices button {
    font-size: 48px;
    padding: 48px;
    border: 2px solid #801236;
    border-radius: 50%;
}

.restart {
    margin: 32px auto;
    width: 100px;
    padding: 8px;
    font-size: 18px;
    background-color: #182a56;
    border: none;
    border-radius: 8px;
    color: #ddd;
    visibility: hidden;
}

.restart:hover {
    background-color: #293b67;
}

.restart:active {
    background-color: #182a56;
}

#rock {
    background-color: #b71bb2;
}

#paper {
    background-color: #166db5;
}

#scissors {
    background-color: #ebc804;
}

#rock:hover {
    background-color: #c82cc3;
}

#paper:hover {
    background-color: #277ec6;
}

#scissors:hover {
    background-color: #fcd915;
}

#rock:active {
    background-color: #b71bb2;
}

#paper:active {
    background-color: #166db5;
}

#scissors:active {
    background-color: #ebc804;
}

.result {
    margin-top: auto;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.human-score,
.computer-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.emoji-label {
    font-size: 48px;
}

.score-label,
.final-message {
    font-size: 32px;
}

.score-label,
.final-message {
    color: #eee;
}

.final-message {
    text-align: center;
}