body {
    font-family: 'Segoe UI', 'Roboto', 'Verdana', 'Ubuntu', 'Arial', 'Helvetica Neue', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0px;
    background: #427a97;
}

h1 {
    width: 100%;
    text-align: center;
    color: #fff;
    -webkit-text-stroke: 2px black;
    font-weight: 800;
    text-shadow: #0005 0px 8px 3px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 5px;
    width: 100vw;
    text-align: center;
    color: #04334b;
    font-size: 1.3em;
}

.center select {
    background-color: rgb(150, 125, 240);
    color: #fff;
    font-weight: 700px;
    border: none;
    border-radius: 15px;
    padding: 8px 22px;
    margin-bottom: 10px;
    box-shadow: #000b 0px 0px 3px 0px;
    transform: none;
}

/* I DON'T KNOW HOW THIS FUCK WAS STILL VISIBLE, BUT IT REQUIRED ME DRASTIC METHODS */
*[hidden] {
    display: none !important;
    position: fixed !important;
    left: -999900vw !important;
    top: -999900vh !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -999999 !important;
    transform: translate(-999900vw -999900vh) scale(0.00000000000000005551115123125783px) !important;
    filter: opacity(0) !important;
}

.dropdown {
    display: none;
    width: 80%;
}

.dropdown[data-open="true"] {
    display: flex;
    flex-direction: column;
}

#main {
    display: flex;
    justify-content: center;
}

textarea[readonly] {
    background-color: #ccc;
    resize: none;
    border: 1px black solid;
    border-radius: 4px;
    cursor: pointer;
    width: stretch;
    height: 100px;
    border: none;
    border-radius: 10px;
    box-shadow: #000b 0px 0px 5px 0px;
    font-family: monospace;
}

.form_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    background: rgb(232, 244, 255);
    border-radius: 10px;
    padding: 40px;
    margin: 10px;
    padding-top: 8px;
    box-shadow: #0005 0px 0px 8px 2px;
}

.form_div button {
    background-color: rgb(150, 125, 240);
    color: #fff;
    font-weight: 700px;
    border: none;
    border-radius: 15px;
    padding: 8px 22px;
    margin-bottom: 10px;
    box-shadow: #000b 0px 0px 3px 0px;
    transform: none;
    transition: 0.3s;
}

.form_div button:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
.form_div button:active {
    transform: scale(0.9333);
    filter: brightness(1.5);
}

.form_div input[type="text"] {
    border: none;
    outline: none;
    border-radius: 0.5em;
    background-color: rgb(255, 255, 255);
    box-shadow: #0005 0px 0px 2px 0px;
    height: 1.5em;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.idk-inline {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    justify-content: center;
}

#main .form_div a {
    margin-top: 5px;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
}
#main .form_div a:hover {
    text-decoration: underline;
    font-weight: 600;
}
#main .form_div a:active {
    color: #55f;
}
