/* 

COLORS:

#0111ff = LED
#020122 = WALL

#ffb763 = LED
#1d0602 = WALL

*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

*{
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 0 0 15px #ffb763;
}
*::-webkit-scrollbar {
    background: none;
    width: 5px;
}
*::-webkit-scrollbar-thumb {
    background-color: #aaaaaa;
}
i.fa-solid{
    width: 30px;
    font-size: 20px;
}
body{
    margin: 0;
    background: rgb(0,10,152);
    background: linear-gradient(180deg, rgba(0,10,152,1) 0%, rgba(167,115,55,1) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
}
#control{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
}
#control > .item{
    border: 2px solid white;
    color: white;
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
    text-align: center;
    transition: 0.3s;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#control > .item > i{
    font-size: 40px;
    width: 50px;
}
#control > .item > input[type="range"],
#control > .item > select{
    cursor: pointer;
    transition: 0.3s;
    margin: 2px;
}
#control > .item > input[type="number"]:hover,
#control > .item > select:hover{
    transition: 0.3s;
    box-shadow: 0 0 5px #ffb763;
}
#control > .item > span{
    margin: 5px;
    text-shadow: 0 0 15px #ffb763;
}
#control > .item.hover:hover{
    border: 2px solid #aaaaaa;
    color: #aaaaaa;
    cursor: pointer;
}
#control > .item > input[type="number"]{
    margin: 10px 0;
    background: #ffffff;
    font-size: 15px;
    border: #bbbbbb solid 1px;
    padding: 3px;
    transition: 0.3s;
    outline: none;
}
#control > .item > select{
    margin: 10px 0;
    background: #ffffff;
    font-size: 15px;
    border: #bbbbbb solid 1px;
    padding: 3px;
    transition: 0.3s;
    outline: none;
}

#header{
    color: white;
    text-align: center;
    width: 1000px;
    max-width: 100%;
    margin: auto;
    margin-top: 100px;
}
h1{
    font-size: 50px;
}
.content{
    position: absolute;
    z-index: 999;
    width: 100%;
}

#cookie{
    border: 2px solid white;
    color: white;
    width: fit-content;
    text-align: center;
    border-radius: 5px;
    max-width: 100%;

    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}
#noscript{
    border: 2px solid white;
    color: white;
    width: fit-content;
    text-align: center;
    border-radius: 5px;
    max-width: 100%;
    margin: auto;
    padding: 10px;
}
#notify{
    border: 2px solid white;
    color: white;
    width: fit-content;
    text-align: center;
    border-radius: 5px;
    max-width: 100%;
    margin: 10px auto;
    padding: 10px 10px 0;
}

.windowCenter{
    display: flex;
    height: fit-content;
    max-width: 100%;
    color: white;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.windowCenter > div{
    height: fit-content;
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;
    margin: 10px 0;
    width: 300px;
    max-width: 100%;
}
.music-wrap{
    overflow-y: scroll;
    max-height: 300px;
    border: 2px solid white;
    max-width: 100%;
}
.music-wrap > .music:nth-child(1){
    border-top: none;
}
.music-wrap > .music{
    border-top: 2px solid white;
    padding: 5px;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    justify-content: space-between;
}



/* FORM STYLING */

.form{
    max-width: 100%;
}
.form input[type="text"],
.form input[type="email"],
.form input[type="url"],
.form input[type="number"],
.form input[type="submit"],
.form input[type="reset"],
.form input[type="password"],
.form input[type="date"],
.form input[type="search"],
.form textarea{
    margin: 10px 0;
    background: #ffffff;
    display: block;
    font-size: 18px;
    border: #bbbbbb solid 1px;
    padding: 10px;
    width: 100%;
    transition: 0.3s;
    outline: none;
}
.form textarea{
    transition: none;
}
.form select{
    margin: 10px 0;
    background: #ffffff;
    display: block;
    font-size: 18px;
    border: #bbbbbb solid 1px;
    padding: 10px;
    width: 100%;
    transition: 0.3s;
    outline: none;
}
.form select option{
    font-size: 15px;
}
.form input[type="reset"]{
    margin: 10px 0;
    background: white;
    display: block;
    font-size: 18px;
    border: #ff3333 solid 1px;
    padding: 10px 0;
    width: 100%;
    color: #ff3333;
    transition: 0.3s;
}
.form input[type="reset"]:hover{
    background-color: #ff3333;
    color: white;
    box-shadow: 0 0 5px #ff3333;
    border: 1px solid #ff3333;
}
.form input[type="reset"],
.form input[type="submit"]{
    cursor: pointer;
}
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="number"]:focus,
.form input[type="reset"]:focus,
.form input[type="submit"]:focus,
.form input[type="password"]:focus,
.form input[type="url"]:focus,
.form input[type="date"]:focus,
.form input[type="search"]:focus,
.form textarea:focus{
    box-shadow: 1px 1px 5px white;
    outline: white 1px solid;
}
.form textarea{
    height: 200px;
    resize: vertical;
}
.box{
    width: 1fr;
    padding: 10px;
    border: 1px solid #bbbbbb;
}

.form input[type="submit"]{
    background: #ffffff;
    display: block;
    margin: 10px auto;
    border: #bbbbbb solid 1px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.form input[type="submit"]:hover{
    background-color: #000a98;
    color: white;
    box-shadow: 0 0 5px white;
    border: 1px solid white;
}
.form optgroup.title{
    color: white;
    font-size: 18px;
}


/* BUTTONS */

.btn-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.btn-a{
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.btn-a:hover{
    color: #0066bb;
}

.btn{
    background: none;
    color: white;
    cursor: pointer;
    border: 1px white solid;
    padding: 10px;
    margin: 10px 10px 10px 0px;
    width: fit-content;
    max-width: 100%;
    height: fit-content;
    font-size: 17px;
    display: block;
    transition: 0.3s;
}
.btn i{
    font-size: 20px;
    width: 25px;
    text-align: left;
}
.btn:hover{
    color: #000a98;
    background-color: white;
    box-shadow: 0 0 5px white;
    border: 1px solid white;
}
.center{
    text-align: center;
    margin: 10px auto;
}
a.link{
    color: white;
    transition: 0.3s;
}
a.link:hover{
    color: #bbbbbb;
}
a.nodeco{
    text-decoration: none;
}
#info{
    display: flex;
    height: fit-content;
    max-width: 100%;
    color: white;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
#info > div{
    border: 2px solid white;
    height: fit-content;
    padding: 10px;
    border-radius: 5px;
}
#info > div > h2{
    text-align: center;
}
#info > div > div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
#info > div > div > div{
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 10px;
}
#info > div > div > img{
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 10px;
}

#time{
    display: flex;
    height: fit-content;
    max-width: 100%;
    color: white;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
#time > div{
    border: 2px solid white;
    height: fit-content;
    padding: 10px;
    border-radius: 5px;
    width: 200px;
    max-width: 100%;
}
#time > div > h2{
    text-align: center;
    margin: 5px;
}