#background_structure {
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    position: fixed;
    /*overflow: hidden;*/

}

#background_canvas {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
}

#rain_canvas {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
}



#lights_canvas {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
}

.dark {
    position: fixed;
    width: 100%;
    height: 100dvh;
    inset: 0;
    background: linear-gradient(0deg, hsla(0, 0%, 0%, 0.4) 10%, transparent 80%);
}


#global_scene {
    width: 100vw;
    height: 100vh;
    display: flex;
    inset: 0;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}

.playing_as {
    position: relative;
    margin-right: auto;
    margin-left: 4px;
    margin-top: 4px;
    height: 8px;
    z-index: 10;
}

.playing_as span {

    color: hsla(0, 0%, 80%, 1);
    font-family: var(--SECOND_FONT_FAMILY);
    margin-top: 1px;
    font-size: 16px;
}

.small-text {
    font-size: 15px;
    color: var(--color-primary-default-text);
    font-weight: 500;
}

.normal-text {
    font-size: 17px !important;
    color: var(--color-primary-default-text);
    font-weight: 500;
}

.large-text {
    font-size: 21px;
    color: var(--color-primary-default-text);
    font-weight: 500;
}

.very-large-text {
    font-size: 28px;
    color: var(--color-primary-default-text);
    font-weight: 500;
}

.margin-top-small {
    margin-top: 5px !important;
}

.margin-top-medium {
    margin-top: 15px !important;
}

.margin-top-large {
    margin-top: 20px !important;
}

.margin-top-very-large {
    margin-top: 30px !important;
}

.negative-text {
    color: var(--color-negative-text) !important;
}

.neutral-text {
    color: var(--color-neutral-text) !important;
}

.positive-text {
    color: var(--color-positive-text) !important;
}


.bg-negative {
    background-color: var(--color-negative) !important;
}

.bg-positive {
    background-color: var(--color-positive) !important;
}

.label-text {
    color: hsla(0, 0%, 90%, 1) !important;
}

.primary-input {
    all: unset;
    width: 100%;
    background-color: hsla(0, 0%, 100%, 0.1);
    color: var(--color-primary-default);
    font-size: 18px;
    padding: 6px;
    font-family: var(--SECOND_FONT_FAMILY);
    font-weight: 500;
    box-sizing: border-box;
    border-radius: var(--BORDER_RADIUS);
}


.btn {
    all: unset;
    color: var(--color-primary-default);
    padding: 5px 10px;
    text-align: center;
    border-radius: var(--BORDER_RADIUS);
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
    box-sizing: border-box;
    position: relative;
    display: block;
    transition: var(--TRANSITION);
}

.btn:hover {
    transition: var(--TRANSITION);
    scale: calc(100% + 3%);
}

.primary-form {
    display: block;
    margin-bottom: 0px;
}


















/* Alert Modal */

.alert_container {
    background-color: hsla(0, 0%, 0%, 0.2);
    backdrop-filter: blur(var(--BLUR));
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 12;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.alert_container>#Alert_Box {
    z-index: 6;
    border-radius: var(--BORDER_RADIUS);
    background-color: var(--color-primary-surface-1);
    width: 400px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--BOX_SHADOW);
    padding: 20px;
    box-sizing: border-box;
}

.alert_container>#Alert_Box #Alert_Title {
    font-size: 28px;
    text-align: center;
    color: white;
}

.alert_container>#Alert_Box #Alert_Text {
    text-align: center;
    font-size: 18px;
    color: white;
    margin-top: 20px;
}

.alert_container>#Alert_Box button {
    all: unset;
    color: white;
    background-color: var(--color-positive);
    width: 150px;
    text-align: center;
    font-size: 28px;
    height: 40px;
    cursor: pointer;
    border-radius: var(--BORDER_RADIUS);
    transition: 200ms;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.alert_container>#Alert_Box button:hover {
    transition: 200ms;
    scale: 1.0625;
}