body {
    background-color: #121212;
    color: #F9FAF8;
    font-family: 'Book Antiqua';
    max-width: 75%;
    margin:auto;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    gap: 20px
}

.everything {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

#heading {
    font-size: 25px;
    font-weight: bold;
    display: flex;
    width: 25%;
    justify-content: center;
    color: #F9FAF8;
    padding: 20px;
    margin: 0px auto;
    border: solid 5px;
    border-radius: 10px;
    border-color: #332940;
    background-color: #121212;
}

.options {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    justify-content: space-around;
    align-items: center;
}

#setSide {
    color: #F9FAF8;
    padding: 25px 50px;
    margin: 0px;
    border: solid 5px;
    border-radius: 10px;
    border-color: #332940;
    background-color: #121212;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: #332940;
    outline: none;
    border-radius: 3px
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #F9FAF8;
  cursor: pointer;
}

#resetGrid, #changeColor {
    height: 50px;
    width: 50%;
    border-radius: 10px;
    background-color: #332940;
    color: #F9FAF8;
    border: solid 3px;
    border-color: #332940;
    cursor: pointer;
}

.colorPicker {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#colorLabel {
    font-family: 'Book Antiqua';
    color: #F9FAF8;
}

#color {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 50px;
    width: 100px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.grid {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 512px;
    width:512px;
    user-select: none;
}