body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif
}

.screen {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.header-text {
    font-size: 2rem;
    font-weight: 700;
}

.comparison-text {
    font-size: 5rem;
    font-weight: 700;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.choices {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.score-item__text {
    color: rgb(112, 112, 112);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.choices button {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 6rem;
    height: 200px;
    transition: background-color 0.2s, border-radius 0.2s, font-size 0.2s;
    width: 200px;
}

.choices button:hover {
    background-color: rgb(32, 32, 32);
    border-radius: 20%;
    font-size: 6.5rem;
}

.disabled {
    border-radius: 20%;
    pointer-events: none;
}

.winning {
    background-color: rgb(123, 190, 123);
}

.choice-text {
    background-color: rgb(233, 233, 237);
    border-radius: 10px;
    color: rgb(112, 112, 112);
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0px;
    width: 100%;
}

.round-results-text {
    background-color: rgb(233, 233, 237);
    border-radius: 10px;
    text-align: center;
    padding: 20px 0px;
    width: 100%;
}

.round-results-tooltip-text {
    border-radius: 10px;
    color: rgb(112, 112, 112);
    text-align: center;
    padding: 20px 0px;
    width: 100%;
}

.continue-button {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    height: 60px;
    text-transform: uppercase;
    transition: background-color 0.2s;
    width: 100%;
}

.continue-button:hover {
    background-color: rgb(32, 32, 32);
    color: white;
}

.hovered {
    color: black;
    font-weight: 700;
}

.hide {
    display: none;
}