.big-star {
  color: #aef8ff;
  font-size: 48;
}
.big-star-container {
  display: flex;
  flex-direction: row;
  height: 50%;
}
.star-slider-container {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #aef8ff;
}
.form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
label {
  cursor: pointer;
}
#textbox-review {
  width: 80%;
  height: 80%;
  resize: none;
  border-radius: 25px;
  padding: 25px;
  border: 0;
  background-color: #dbdbdb;
}
#star-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.submit-button {
  margin: 1vh;
  font-size: 24;
  font-weight: bold;
  background-color: #b8cc84;
  border: 0;
  padding: 10px;
  border-radius: 25px;
}
.review-form {
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  min-width: 500px;
  min-height: 500px;
  width: 75%;
  height: 75%;
  justify-content: center;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 25px;
}