body {
    background-color: #C6DEC6;
    color:#647A67;
    font-family: system-ui, sans-serif;
    text-align: center;
}

h1 {
    color:#020402;
    font-weight: bold;
    font-size: 2rem;
}

h2 {
    color:#647A67;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 0rem 1rem;
}

.button,
.again {
    color:#C5EFCB;
    background-color: #A9C5A0;
    padding: 2rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 12%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button {
    flex: 1;
}

.again {
    display: none;
    padding: 1rem;
    font-size: 1rem;
    margin: 0 auto;
}

.button:hover,
.again:hover {
    color:#758173;
    background-color: #8FA38A;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.button:active,
.again:active {
    color:#647A67;
    background-color: #B8D2B3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
}

#final {
    color: #000;
    font-style:oblique;
    display: block;
}

#result {
    color: #333F35;
}

.scores {
    display: flex;
    justify-content: center;
    gap: 4rem;
}
