body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
  background: linear-gradient(to top left, #000000, #363636);
}

#super-container {
  /* Överordnad container som innehåller de mindre */
  width: 70%;
  display: grid; 
  grid-template-columns: 1fr 3fr; /* Grid-template-columns ger en kolumn per element */
  background-color: transparent;
}


#mandelbrot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid black;
}


#options {
  display: flex;
  color: white;
  margin-right: 5%;
  position: relative;
  align-items: center;
  border-radius: 10px;
  flex-direction: column;
  background-color: #fff2;
  border: 1px solid black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#checkbox {
  font-size: 100%;
}


#zoom {
  padding-top: 5%;
}

#time {
  padding: 5%;
}

#iterationSlider {
  width: 90%;
  margin-bottom: 5%;
}

#palettes {
  color: white;
  width: 95%;
  padding: 5%;
  margin-bottom: 5%;
  border-radius: 10px;
  border: 1px solid white;
  font-size: inherit;
  font-family: inherit;
  background-color: #2e2e2eeb;
}

#coords {
  background-color: #2e2e2eeb;
  color: white;
  width: 85%;
  margin-bottom: 5%;
  position: absolute;
  text-align: center;
  bottom: 32%;
  padding: 5%;
  border: 1px solid white;
  font-family: inherit;
  border-radius: 10px;
}

#coords::placeholder {
  color: rgb(161, 161, 161)
}

#julia {
  border-radius: inherit;
  border: inherit;
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1;
}