/* ------------------------------ Main ----------------------------------*/

body {
    background-color: #d8d8d8;
}

#main {
    margin-left: 0px;
    overflow-x: hidden;
}

#header {
    text-align: center;
    font-family: "Verdana";
    font-size: 68px;
    transition: 1s;
}

.text {
    font-size: calc(1.5vw + 60%);
    transition: 0.5s;
}

#main-interface {
    width: 100%;
    padding-left: 10%;
    height: 100%;
    display: flex;
}

#settings {
    position: relative;
    left: 5%;
    width: 45%;
}

.single-setting {
    display: table;
    width: 100%;
    margin-bottom: 5%;
}

.form-label {
    float:left;
    display:inline;
    width: 45%;
}

.form-control {
    font-size: calc(1vw + 50%) !important;
    position: relative;
    float:left;
    display:inline;
    margin-left: 10%;
    width: 45%;
}

.main-dropdown {
    color: black;
    background-color: white;
}

input[type='checkbox'] {
    width:45px;
    height:45px;
}

#start-btn {
    width: 100%;
    height: 50px;
    font-size: calc(1vw + 60%);
    margin-top: 5%;
}

#regenerate-btn {
    margin-top: 5%;
    width: 100%;
    height: 50px;
    font-size: calc(1vw + 60%);
}

#help-btn {
    position: absolute;
    top: 4%;
    right: 5%;
    font-size: 2vw;
    width: 4vw;
    height: 4vw;
    color: white;
    background-color: #ff6969
}

#help-btn:hover {
    background-color: #f42069
}



/* ----------------------------  Side-Nav Stuff ----------------------------------*/
#sidenav-btn {
    width: 7vw;
    height: 7vw;
    background-color: #ff6969;
    margin-top: -10%;
    font-size: 4vw;
}

#togglebtn {
    width: 100px;
    height: 100px;
    left: 25%;
    font-size: 64px !important;
    padding: 0px 0px 0px 0px !important;
    background-color: #ff6969 !important;
}

#sidenav {
    height: 100%;
    width: 0px;
    position: fixed;
    background-color: #2c2c2c;
    transition: 0.3s;
}


#sidenav .dropdown {
    padding: 6px 8px 6px 15px;
    font-size: 20px;
    color: #2c2c2c;
    display: none;
    border: solid;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 5px;
    background-color: #a8a8a8;
    transition: 0.3s;
}

#sidenav .dropdown-menu {
    color: #2c2c2c;
    background-color: #a8a8a8
}


#sidenav .dropdown:hover {
    color: #f1f1f1;
}

#sidenav .dropdown-item:hover {
    color: #f1f1f1;
    background-color: #2c2c2c
}

@media screen and (max-height: 450px) {
    #header{
        font-size: 250%;
    }
}

@media screen and (max-width: 800px) {
    #header{
        font-size: 250%;
    }
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}