* {
    border: 0;
    margin: 0;
    font-family: Arial;
    font-weight: 600;
    color: rgb(195, 195, 216);
}
html {
    background-color: rgb(32, 31, 36);
    box-sizing: border-box; 
}

header#wb-header {
    background-color: rgb(44, 41, 54);
    position:relative;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;   
}

div.sct1, div.sct2, div.sct3, div.sct4 {
    background-color: rgb(37, 37, 51);
    color: rgb(195, 195, 216);
    position: absolute;
    z-index: 0;
    left: 32px;
    border-radius: 10px;
    display: block;
}

footer#wb-footer {
    background-color: rgb(38, 38, 48);
    position: fixed;
    bottom: 0;
    right: -5px;
    width: 100%;
    border-radius: 33px;
}

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

select,button,input {
    background-color: rgb(33, 34, 39);
    color: rgb(195, 195, 216);
}

main {
    position: relative;
    background-color: rgb(26, 27, 34);
    overflow: hidden;
    overflow-y: hidden;
}

#wb-links {
    position: relative;
    background-color: rgb(30, 30, 39);
}

div.wb-modal {
    width: 90%; 
    max-width: 600px; 
    min-width: 300px; 
    z-index: 1000; 
    color: rgb(195, 195, 216);
    background-color: rgba(11, 11, 14, 0.788);
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    padding: 20px; 
    border-radius: 12px; 
    overflow-y: auto; 
    max-height: 90vh; 
    box-sizing: border-box; 
}
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;
}


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