/* fonts :shrug: */
@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');

.tasa-orbiter, body {
  font-family: "TASA Orbiter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/*  
 * Drop down table:
 * https://www.w3schools.com/howto/howto_css_dropdown.asp, null-austin
 */
.dropbtn{
    /*background-color: rgb(202, 87, 87);*/
    background: none;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}
.dropdown{
    position: relative;
    display: block;
    width: max-content;
    z-index: 1001;
    /* background-color: black; */
    margin: 0 auto;
    margin-bottom: 20px;
}
.dropdown-options{
    display: none;
    position: absolute;
    background-color: rgb(24, 24, 24);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,.2);
    z-index: 1000;
}
.dropdown-options a{
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-options a:hover {background-color: #0f0f0f; text-decoration: underline;}
.dropdown:hover .dropdown-options {display: block;}
.dropdown:hover .dropbtn {background-color: rgb(177, 75, 75);}
#current_option{
    width: max-content;
    display: block;
    margin: 0 auto;
    padding: 20px;
}
#current_option #difficulty{
    margin: 0 auto;
    max-width: max-content;
    display: block;
    background-color: rgb(255, 99, 99);
    color: rgb(73, 33, 33);
    /* padding: 6px; */
    border-radius: 5px;
    transition: .1s;
}
#current_option #difficulty:hover{
    background-color: rgb(255, 109, 109);
    color: rgb(83, 40, 40);
    transform: scale(1.05);
    cursor: pointer;
    transition: .1s;
}

/* 
 * Default style: (add your credit if u change lol)
 * null-austin
 */
body,html{
    color: white;
    margin: 0;
    padding: 0;
    background-color: rgb(12, 12, 12);
    height: 100%;
    width: 100%;
}
h1,h2{
    text-align: center;
    color: rgb(226, 226, 226);
}
h2{
    text-transform: uppercase;
    color: rgb(92, 92, 92);
}
 
/*
 * Options menu: 
 * null-austin
 */
#options{
    background-color: rgb(22, 22, 22);
    text-align: center;
    width: 77%;
    margin: 0 auto;
    height: 34%;
    border: 2px rgb(51, 51, 51) solid;
    border-radius: 5px;
}
#options a.option{
    /* width: max-content; */
    margin: 0 auto;
    display: block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(40, 122, 170);
    padding: 16px;
    font-size: 16px;
}
#options a.option:hover{
    color: rgb(255, 255, 255);
    text-decoration: underline;
    background-color: rgb(36, 112, 156);
}
/* Options */
#options h2{
    color: rgb(228, 228, 228);
    padding: 0;
    margin: 3px;
}
#options>span>a{
    color: rgb(201, 201, 201);
    margin: 52px;
}
#options #form {
    margin-top: 16px;
    padding: 12px;
    background: none;
    border-radius: 4px;
    box-shadow: none;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
#options #form input,
#options #form input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    border-radius: 3px;
    font-size: 15px;
    padding: 8px;
}
#options #form input {
    border: 1px solid #222;
    background: #181818;
    color: #eee;
}
#options #form input[type="submit"] {
    background: #287aaa;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
#options #form input[type="submit"]:hover {
    background: #236fa0;
}
/* Target Iconify SVGs specifically to keep them behind dropdown */
.iconify, svg.iconify {
    z-index: 1;
    position: relative;
}
.hidden{
    display: none !important;
}
#generate.big{
    height: 93.5%;
    font-size: 64px !important;
    transition: .2s;
}
#generate{
    transition: .2s
}
#error{
    color: rgb(230, 96, 96);
}