:root {
    --dark-blue-100: #609ED4;
    --dark-blue-200: #356EA9;
    --dark-blue-300: #0A3871;
    --dark-blue-400: #072B61;
    --dark-blue-500: #052051;

    --light-blue-100: #F3F5FC;
    --light-blue-200: #EFF1FA;
    --light-blue-300: #E9ECF8;
    --light-blue-400: #AAB2D5;
    --light-blue-500: #757FB2;

    --gray-100: #CED4DA;
    --gray-200: #ADB5BD;
    --gray-300: #868E96;
    --gray-400: #485057;
    --gray-500: #343A40;
}

.jogo {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}

.d-none {
    display: none;
    pointer-events: none;
}

.forca-container {
    fill: transparent;
    stroke: #0A3871;
    stroke-linecap: round;
}



.forca-parte {
    display: none;
}

.letras-certas {
    display: flex;
    flex-direction: row;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 150%;
    text-transform: uppercase;
    gap: 16px;

    text-align: center;

    color: var(--dark-blue-300);
}

.letras-certas li {
    display: flex;
    width: 80px;
    padding: 12px;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-top: 20px;
}

.letras-certas li::after {
    content: "";
    background-color: #0A3871;
    height: 4px;
    width: 100%;
    border-radius: 8px;
    position: absolute;
    bottom: 0;

}

.letras-erradas {
    display: flex;
    flex-direction: row;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
    gap: 16px;

    text-align: center;

    color: var(--gray-400);

    align-items: center;
    justify-content: center;
}

.letras-erradas li {
    margin-top: 24px;
}

button.novo-jogo {
    width: 332px;
    height: 67px;
    background-color: var(--dark-blue-300);
    color: #D8DFE8;
}

button.desistir {
    width: 332px;
    height: 67px;
    background-color: #D8DFE8;
    color: var(--dark-blue-300);
}

.popup-container {
    position: absolute;
    width: 100%;
    margin-top: 350px;
    height: 200px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup {
    font-family: 'Inter';
    font-style: normal;
    color: red;
    font: bold;
    font-size: 30px;
    padding: 20px;
    text-align: center;
}