*{
    font-family: 'Poppins', sans-serif;
}








:root{
    --thinblack: #151818;
    --darkgold: #867e62;
    --dark: #333;
}
body{
    background-color: var(--thinblack);
}


.mainContainer .content article .letsgo{
    background-color: #ffb81c;
}


.adult_popup{
    display: flex;
    position: fixed;
    inset: 0;
    opacity: 1;
    align-items: center;
    justify-content: center;
    background-color: #590505;
    user-select: none !important;
    z-index: 99;
}
.adult_popup.remove{
    top: 0;
    width: 0;
    height: 0;
    left: 300000px;
}

.adult_popup .inpopup{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 80%;
    padding: 20px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.adult_popup .inpopup h2{
    color: #f00;
    font-size: 30px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}
.adult_popup .inpopup .words{
    color: #fff;
    font-size: 22px;
    display: flex;
    padding: 20px 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.adult_popup .inpopup .choiceButtons{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.adult_popup .inpopup .choiceButtons button{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 40%;
    border: 2px solid #000;
    font-size: 20px;
    padding: 10px 0;
    background-color: green;
    align-items: center;
    justify-content: center;
}
.adult_popup .inpopup .choiceButtons .btnDir2{
    background-color: #f00;
}
.adult_popup .inpopup .choiceButtons .btnDir:hover{
    background-color: #000;
    color: green;
    border-color: green;
}
.adult_popup .inpopup .choiceButtons .btnDir2:hover{
    background-color: #000;
    color: #f00;
    border-color: #f00;
}
.adult_popup .inpopup .wordslast{
    background-color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    color: #f00;
    font-size: 18px;
    font-weight: bold;
}
.adult_popup .inpopup .wordslast .diff{
    color: #f00;
    padding: 0 10px;
    background-color: #000;
}




