html {
    background-color: rgb(218, 218, 218);
    min-height: 100vh;
    height: fit-content;
    overflow: hidden;
    padding: 0px;
    font-family: sans-serif;
}

body {
    margin: 0px;
}

.flexbox {
    width: 100%;
    margin: 0px;
    height: fit-content;
    display: flex;
    flex-direction: row-reverse;
}

.texture_box {
    box-shadow: 0px 0px 0px 1px rgb(151, 151, 151) inset;
    background-size: contain;
    transition: background-size 0.5s;
    background-size: 0%;
    background-repeat: no-repeat;
    background-position: center center;
}

#buttons {
    height: fit-content;
}

#texture_section {
    width: 100%;
    height: 70%;
    overflow-y: auto;
}

#texture_flex {
    width: 100%;
    height: fit-content;
}

.texture_flex_section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: fit-content;
    flex-direction: row;
}

.texture_checkbox {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgb(29, 29, 29);
    background-size: 70%;
    border: 2px inset rgba(136, 136, 136, 0.5);
    border-radius: 15px;
}

.texture_checkbox:hover {
    background-color: rgb(255, 230, 0);
}

.texture_section_title {
    text-decoration: underline;
    color: white;
    margin-top: 15px;
    margin-bottom: 5px;
    padding: 5px;
    width: 100%;
    text-align: center;
    font-size: 20pt;
}

.texture_checks {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    opacity: 0;
}

.selection_buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 15px;
    padding: 5px;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
}

.selection_button {
    background-color: rgb(205, 205, 205);
    font-size: 13pt;
    padding: 5px;
    border-radius: 10px;
}
.selection_button:hover {
    background-color: rgb(170, 170, 170);
}

#texture_size_input {
    height: 30px;
    width: fit-content;
    font-size: 12pt;
    border-radius: 10px;   
    text-align: center;
    background-color: rgb(205, 205, 205);
}

#speed_input {
    accent-color: green;
}