:root {
    --CrtWidth:75%;
    --center:calc(var(--CrtWidth)/6.2);
}

@keyframes grow {
  25% {font-size: 11px;}
  50% {font-size: 12px;}
  75% {font-size: 11px;}
}

@font-face {
    font-family: Rubik;
    src: url("/static/fonts/Rubik.ttf");
}
* {
    border: 0;
    margin: 0;
    font-family: Rubik,sans-serif;
    color: rgb(255, 255, 255);
}
html {
    background-color: rgb(0, 0, 0);
    box-sizing: border-box; 
    height: 100%;
}

img {
    position:relative;
    padding:0 0 0 10%; 
}

header.wb-header {
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(5, 5, 5, 0.199);
    background-color: rgb(1, 2, 3);
    position:sticky;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;   
    padding: 10px;
    width: var(--CrtWidth);
    z-index:1000;
}
div.wb-header-lft{
  padding-right:82%;
}
div.wb-2,.wb-3 {
    position:relative;
    padding:25px;
}
div.wb-sect {
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.219);
    background-color: rgba(2, 2, 2, 0.562);
    position: relative;
    z-index: 0;
    left: 32px;
    width: calc(fit-content+20px);
    border-radius: 10px;
    display: block;
}

footer.wb-footer {
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.219);
    padding: 10px 0;
    background-color: rgba(2, 2, 2, 0.752);
    position: absolute;
    bottom: 0;
    left: var(--center);
    width: var(--CrtWidth);
    margin: 0 auto;
    z-index: 1000;
}

.hicon { 
    color: blue;
    display: block;
}

select,button,input {
    background-color: rgb(3, 3, 3);
    width: fit-content;
}

main {
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.219);
    padding: 0 auto;
    position: absolute;
    background-color: rgb(2, 2, 2);
    overflow-y: scroll;
    height: 72%;
    left: var(--center);
    width: var(--CrtWidth);
}
reallysmall {
    font-size: 7px;
}
div.wb-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.178);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.219);
    border-radius: 1.25ch;
    padding: auto;
    max-height: 50%;
    z-index: 2000;
    overflow-y: scroll;
}

div.wb-modal {
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.219);
    display: flex;
    position: fixed;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    vertical-align: middle;
    padding: 20px;
    border-radius: 5px;
    color: rgb(195, 195, 216);
    z-index: 1000;
    background-color: rgba(7, 7, 12, 0.842);
}
div#wb-modal-specs {
    overflow-y: scroll;
}
iframe.wb-modal-iframe {
    overflow-y: scroll;
    border:0;
}
div#wb-modal-specs-more {
    z-index: 1000;
    border-radius: 12px; 
    color: rgb(195, 195, 216);
    background-color: rgb(7, 7, 8);
    display: none;
    position: absolute;
    overflow-y: auto; 
}
#wb-header-randommsg {
    font-size: 12px;
    position: absolute;
    color: rgb(250, 250, 57);
    animation: grow 0.75s infinite;
    white-space: nowrap; 
    max-width: 90%; 
    right: 75px;
}
#wb-dropdown-btn {
    position: absolute;
    display: block;
}
.wb-dropdown {
    display: block;
}
.wb-dropdown-content {
    display: none;
    position: relative;
}
.wb-modal-ppp1w {
    height: 15%;
    display: none;
}
textarea {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 10px;
    max-width: 100%;
    line-height: 1.5;
    border-radius: 5px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.219);
}
code {
    padding: 5px;
    margin: 25px 5px;
    background-color: black;
    font-size: small;
    font-family: sans-serif;
}
.wb-button {
    background-color: rgb(8, 8, 8);
    border-width: 25%;
    border-top: 15%;
    border-bottom: 15%;
    cursor: pointer;
}
.wb-dropdown-btn:hover,.wb-dropdown-content:hover {
    display:block;
}
insanelysmall {
    font-size: x-small;
}
footer#wb-footer-dc {
    text-align: center;
    color: rgba(202, 202, 228, 0.507);
    background-color: rgb(22, 22, 27);
    position: static;
    bottom: 0;
    right: -5px;
    width: 100%;
    border-radius: 1px;
    z-index: 500;
}
div.wb-header-rgh {
    position:absolute;
    text-align:right;
    justify-content: right;
    right: 10px; 
    top: 15%;
    z-index: -1;
}
@media screen and (max-width:1600px) and (max-height:1200px) {
    :root {
        --CrtWidth:90%;
        --center:5%;
    }
    main {
        left:var(--center);
        width: var(--CrtWidth);
        height: 75%;
    }
    div.wb-modal {
        width: 100%;
        max-height: 100%;
        padding: 15px;
    }
    div.wb-header-rgh {
        right: 5%; 
    }
    header.wb-header {
        z-index: 1;
        height: 40%;
        left:var(--center);
        width: var(--CrtWidth);
    }
    footer.wb-footer {
        width: calc(fit-content*2);
        height:calc(fit-content*2);
    }
    #wb-header-randommsg {
        font-size: 8px; 
        right: 3px;
        top: 3px;
    }
}
@media screen and (max-width: 600px) {
    :root {
      --CrtWidth:100%;
      --center:0%;
    }
    main {
        left:var(--center);
        width: var(--CrtWidth);
        height: 57%;
    }
    div.wb-modal {
        width: 100%;
        max-height: 100%;
        padding: 15px;
    }
    div.wb-header-rgh {
        right: 5%; 
    }
    header.wb-header {
        z-index: 1;
        height: 40%;
        left:var(--center);
        width: var(--CrtWidth);
    }
    footer.wb-footer {
        width: calc(fit-content*2);
        height:calc(fit-content*2);
    }
    #wb-header-randommsg {
        font-size: 8px; 
        right: 3px;
        top: 3px;
    }

}
