body {
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title {
    margin: 0;
    color: darkblue;
}

#score {
    margin-top: 8px;
    color: brown;
    font-weight: 800;
    font-size: 20px;
}

#button-wrapper {
    display: flex;
    gap: 10px;
}

#button-wrapper > * {
    width: 100px;
    font-size: 20px;
}

#result-wrapper > * {
    font-size: 20px;
    margin: 5px;
}

#result-wrapper > button {
    font-size: 15px;
    margin: 0 7px;
}