* {
    border: 0;
    margin: 0;
    font-family: Arial;
    font-weight: 600;
    color: rgb(218, 216, 238);
}
html {
    background-color: rgb(17, 17, 24);
    box-sizing: border-box; 
    max-height: 700px;
    height: 100%;
}


header#wb-header {
    background-color: rgb(22, 21, 27);
    position:relative;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;   
    padding: 10px;
    width: 75%;
}

div.wb-sct1, div.wb-sct2, div.wb-sct3, div.wb-sct4, div.wb-sct5, div.wb-sct6 {
    background-color: rgba(15, 15, 19, 0.411);
    position: absolute;
    z-index: 0;
    left: 32px;
    border-radius: 10px;
    display: block;
}

footer#wb-footer {
    padding: 15px;
    background-color: rgb(19, 19, 24);
    position: sticky;
    bottom: 0;
    width: 75%;
    margin: 0 auto;
    border-radius: 33px;
    z-index: 1000;
}

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

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

main {
    margin: auto;
    padding: 20px;
    position: relative;
    background-color: rgb(17, 17, 24);
    overflow: hidden;
    width: 75%;
}

#wb-links {
    position: relative;
}
div.wb-modal-content {
    position: fixed;
    display: flex;
    text-align: center;
    justify-content: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
    background-color: rgba(11, 11, 14, 0.986);
}
div.wb-modal {
    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(11, 11, 14, 0.842);
}
div#wb-modal-specs {
    overflow-y: scroll;
}
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-dropdown-btn {
    position: absolute;
    display: block;
}
.wb-dropdown {
    display: block;
}
.wb-dropdown-content {
    display: none;
    position: relative;
}

.wb-button {
    background-color: rgb(21, 24, 37);
    border-radius: 20cm;
    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;
}


/* This makes it so mobile friendly and optimized, probably. */
@media (max-width: 480px) {
    div.wb-modal {
        width: 95%;
        max-height: 85vh;
        padding: 15px;
    }
}