@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Reggae+One&family=VT323&display=swap');

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

:root {
    --box-color: #faf0d8;
    --black-shade: #191955;
    --gray-shade: #191955;
}

body {
    color: var(--black-shade);
    height: 100vh;
    font-family: "Poppins", sans-serif;
    background: #faf0d8;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-family: "Reggae One", system-ui;
}

h3 {
    font-family: "Reggae One", system-ui;
}

.ux_navplayer {
    width: 900px;
    height: 60px;

    background-color: #f43d3720;
    border-radius: 20px;
    border: 2px solid #f43d37;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--black-shade);

    cursor: pointer;

    margin-bottom: 20px;
}

.ux_navplayer i {
    color: #f43d37;
    font-weight: 500;
}

.namespace {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
}

.ot_namespace {
    color: var(--black-shade);
    margin-bottom: 15px;
}

.ux_helloblank {
    width: 900px;
    height: 100px;
    padding: 40px;

    background-color: var(--box-color);
    border-radius: 20px;
    border: 2px solid var(--gray-shade);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.img_circular {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28PX;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 3px dotted var(--black-shade);
}

.xp_button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--black-shade);
    color: var(--box-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    width: 250px;
    height: 40px;
}

.sm_button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--gray-shade);
    color: var(--box-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    width: 100px;
    height: 40px;
    margin-left: 10px;
    border-radius: 5px;
}

.container {
    display: flex;
    flex-direction: column;
    width: 900px;
    height: fit-content;
    border-radius: 20px;
}

.gm_gamemode {
    margin-bottom: 30px;
    text-align: center;
}

.gm_howto {
    margin-bottom: 30px;
}

.bx_settings {
    display: flex;
    flex-direction: column;
}

.bx_swipe {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.contained {
    display: flex;
    flex-direction: column;
    width: 900px;
    height: fit-content;
    border-radius: 20px;
}

.bx_arcade {
    display: flex;
    height: 400px;
    width: 290px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--box-color);
    border: 2px solid var(--gray-shade);
    border-radius: 10px;
    margin-bottom: 16px;
}

.bx_bigcontent {
    display: flex;
    height: 400px;
    width: 580px;
    flex-direction: column;
    padding: 20px;
    background-color: var(--box-color);
    border: 2px solid var(--gray-shade);
    border-radius: 10px;
    margin-bottom: 16px;
}

.bx_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bx_quiz {
    display: flex;
    height: 400px;
    width: 580px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--box-color);
    border: 2px solid var(--gray-shade);
    border-radius: 10px;
    margin-bottom: 16px;
}

.qz_question {
    font-weight: bold;
    margin-bottom: 10px;
}

.qz_options {
    margin-bottom: 20px;
}

.qz_option {
    display: flex;
    margin-bottom: 10px;
    accent-color: var(--gray-shade);
}

.qz_info {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.xp_emoji {
    font-size: 18px;
    font-weight: bold;
}

.xp_texts {
    font-size: 18px;
}

.xp_difficulty {
    accent-color: #354e72;
    margin-top: 10px;
    width: 70%;
}

.xp_description {
    text-align: center;
}

input[type="radio"] {  
    margin-right: 10px;
}

.xp_hide {
    display: none;
}

.bx_answers {
    height: 400px;
    padding: 20px;
    border: 1px solid #3a3c55;
    border-radius: 4px;
    overflow-y: scroll;
}