#Settings-Screen {
    position: absolute;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    /* Safari prefix */
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    overflow-y: auto;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flext-start;
    gap: 20px;
}

.settings-title {
    font-size: 64px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
    padding-top: 20px;
}

.settings-save-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.settings-save-buttons button {
    border: none;
    color: white;
    border-radius: 10px;
    padding: 10px 30px 10px 30px;
    aspect-ratio: 9/2;
    font-size: 2.5vw;
    transition: 0.1s ease-in-out;
    cursor: pointer;
}

.settings-save-buttons button:hover {
    filter: brightness(70%);
}

.settings-save-buttons :nth-child(1) {
    background-color: green;
}

.settings-save-buttons :nth-child(2) {
    background-color: blue;
}

#save-key {
    padding-top: 20px;
    width: 50%;
    font-size: 3vw;
    color: green;
    user-select: none;
    word-wrap: break-word;
}

#save-key span {
    user-select: text;
}

label {
    color: white;
    font-size: 32px;
}

.settings-slider {
    display: flex;
    width: 30%;
    justify-content: space-evenly;
    gap: 10%;
}

.settings-slider input {
    width: 60%;
}

.settings-sub {
    padding-top: 2%;
    color: white;
    font-size: 48px;
    text-align: left;
    width: 50%;
}

.settings-sub span {
    font-size: 24px;
    color: red;
}

label input {
    height: 80%;
    aspect-ratio: 1/1;
}

label {
    display: flex;
    align-items: center;
    justify-content: flext-start;
    gap: 2%;
    width: 50%;
}

hr {
    background-color: white;
    width: 50%;
    height: 3px;
    min-height: 3px;
    border: none;
}

#settings-exit {
    width: 200px;
    aspect-ratio: 4/1;
    border-radius: 10px;
    margin-bottom: 5%;
    background-color: white;
    color: black;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

#settings-exit:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
    cursor: pointer;
}

@media (max-width: 700px) {
    .settings-slider {
        width: 80%;
    }

    label {
        width: 80%;
    }
}

#Help-Screen {
    position: absolute;
    width: 100vw;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    /* Safari prefix */
    -webkit-backdrop-filter: blur(8px);

    color: white;
    z-index: 999;
    padding: 5%;

    display: none;
    flex-direction: column;
    overflow: auto;
}

#Help-Exit {
    position: sticky;
    top: 0;
    width: 80px;
    transform: translateX(calc(90vw - 80px));
    aspect-ratio: 1/1;
    border-radius: 80px;
    background-color: darkred;
    border: 2px solid white;
    box-shadow: 0px 0px 50px 20px black;
    color: white;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

#Help-Exit:hover {
    filter: brightness(80%);
    transform: scale(105%) translateX(calc(86.5vw - 84px));
}

#Help-Screen h1 {
    font-size: 64px;
    font-weight: bold;
    text-align: center;
}

#Help-Screen h2 {
    padding-top: 5%;
    font-size: 64px;
    font-weight: bold;
    text-align: center;
}

#Help-Screen h1 span {
    color: darkred;
    text-shadow:
        1px 0 white,
        -1px 0 white,
        0 1px white,
        0 -1px white;
}

#Help-Screen h3 {
    padding-top: 5%;
    font-size: 48px;
    font-weight: bold;
}

#Help-Screen p {
    font-size: 24px;
    padding-top: 1%;
    padding-bottom: 1%;
}

#Help-Exit p {
    font-size: 40px;
}

#Help-Screen p span {
    font-weight: bold;
}
