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

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, #2ceed1, #832cee);
}

.result {
    margin: 16px;
    border: 2px dashed #eee;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.title {
    color: #fff;
}

.scores {
    max-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.score-container {
    border-radius: 4px;
    height: 100px;
    width: 100px;
    background-color: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.score-label,
.human-score,
.computer-score {
    font-weight: 600;
    text-align: center;
}

.score-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #2c73ee;
}

.human-score,
.computer-score {
    font-size: 22px;
    color: #113168;
}

.choices {
    margin: 40px auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 64px;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.buttons {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.buttons button {
    border-radius: 100%;
    padding: 40px;
    font-size: 48px;
    background-color: #fff;
    cursor: pointer;
}

#rock {
    border: 10px solid #eebe2c;
}

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

#paper {
    border: 10px solid #2c73ee;
}

#paper:hover {
    background-color: #2c73ee;
}

#scissors {
    border: 10px solid #ee502c;
}

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

#rock:active,
#paper:active,
#scissors:active {
    background-color: #fff;
}

.message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: 24px;
    font-style: italic;
    color: #fff;
    margin-bottom: 12px;
}

.reset {
    display: flex;
    justify-content: center;
    padding: 16px;
}

.reset-btn {
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    background-color: #113168;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.reset-btn:hover {
    background-color: #fff;
    color: #113168;
}

.reset-btn:active {
    border: none;
    background-color: #113168;
    color: #fff;
}