.imgFilter {
  filter: invert(49%) sepia(97%) saturate(4627%) hue-rotate(338deg)
    brightness(117%) contrast(112%);
}

.form-container {
  margin: 100px auto 0 auto;
}

.generator-form {
  width: 100%;
  max-width: 1000px;
}

.result-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#image-options {
  display: flex;
  flex-wrap: wrap;
}

#image-options label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
  padding: 5px;
  width: 80px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  color: #f2f2f2;
  border-radius: 6px;
  cursor: pointer;
}

.selected {
  background: #FF1F8E !important;
}

@media screen and (max-width: 700px) {
  #image-options label {
    margin: 10px;
    width: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 500px) {
  #image-options label {
    margin: 10px;
    width: 125px;
    height: 125px;
  }
}
#image-options label:hover {
  background-color: #1f8eff;
}

#image-options label input[type="checkbox"] {
  display: none;
}
.image-option {
  height: 60px;
}
#image-options label .image-option {
  margin: 10px auto 5px auto;
}

#image-options label input[type="checkbox"]:checked + .image-option {
  filter: brightness(140%) saturate(140%);
}


canvas {
  border-radius: 10px;
  flex-shrink: 0;
  padding: 10px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.05);
}
