:root {
    --color: #6495ed;
    --ml: 30px;
    --mr: 30px;
    --mt: 30px;
    --mb: 30px;
    --bl: 30px;
    --br: 30px;
    --bt: 30px;
    --bb: 30px;
    --pl: 30px;
    --pr: 30px;
    --pt: 30px;
    --pb: 30px;
  }

.frame {
    height: 200px;
    width: 300px;
    background-color: rgb(242, 242, 242);
    padding-left: var(--pl);
    padding-right: var(--pr);
    padding-top: var(--pt);
    padding-bottom: var(--pb);
    border: solid rgb(42, 30, 21);
    border-right-width: var(--br);
    border-left-width: var(--bl);
    border-top-width: var(--bt);
    border-bottom-width: var(--bb);
    margin-right: var(--mr);
    margin-left: var(--ml);
    margin-top: var(--mt);
    margin-bottom: var(--mb);
}

.others {
    height: 70px;
    width: 380px;
    background-color: rgb(242, 242, 242);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid rgb(42, 30, 21);
    border-right-width: 10px;
    border-left-width: 10px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-left: 0px;
}

#side {
    margin-top: 30px;
    height: 280px;
    width: 70px;
    margin-right: 0px;
    margin-left: 0px;
}

#vertical {
    margin-left: 160px;
}

img {
    width: inherit;
    height: inherit;
}

body {
    background-color: rgb(248, 246, 255);
}

.controls {
    background-color: rgb(255, 255, 255); 
    width: 500px;
    height: fit-content;
    margin-right: 10px;
    margin-left: calc(calc(calc(calc(calc(calc(360px - var(--mr)) - var(--br)) - var(--pr)) - var(--ml)) - var(--bl)) - var(--pl));
    padding-top: 0px;
    padding-bottom: 10px;
    padding-right: 0px;
    padding-left: 0px;
    font-size: 18px;
    color: rgb(42, 30, 21);
}

.wall {
    margin-left: 0px;
}

.row {
    display: flex;
    margin-left: 20px;
}

.column {
    flex: 50%;
    margin-left: 10px;
}

h1 {
    text-align: center;
    font-size: 32px;
    color: rgb(42, 30, 21);
    margin-bottom: 20px;
    margin-right: 10px;
}

h2 {
    font-size: 24px;
    color: rgb(42, 30, 21);
    margin-bottom: 20px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none; 
    width: 90%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 15px;
    margin-top: 0px;
}
  
input[type="range"]::-webkit-slider-runnable-track {
    height: 15px;
    background: rgb(232, 224, 248);
    border-radius: 16px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: rgb(142, 77, 159);
    border-radius: 50%;
    box-shadow: -407px 0 0 400px rgb(177, 161, 208);
}

textarea {
    height: 170px;
    width: 188px;
    border: solid rgb(142, 77, 159);
    font-size: 12px;
    padding: 7px;
}