html {
  background: #333;
  font-family: calibri;
  letter-spacing: 1px;
}

input {
  border: 1px solid black;
  border-radius: 2rem;
  margin: 15px;
  margin-top: 50px;
  padding: 15px;
  padding-left: 60px;
  width: 460px;
  background-color: white;
  box-shadow: 2px 2px 28px -1px rgba(0, 0, 0, 0.75);
}

p {
  color: white;
}

div {
  box-shadow: 2px 2px 28px -1px rgba(0, 0, 0, 0.75);
  width: 500px;
  border: 20px solid white;
  border-radius: 2rem;
  height: auto;
}
div img {
  width: auto;
  height: auto;
  max-width: 500px;
  content-fit: contain;
}
div .Grayscale {
  filter: grayscale(100%);
}
div .Blur {
  filter: blur(5px);
}
div .Saturate {
  filter: saturate(4);
}
div .Sepia {
  filter: sepia(1);
}
div .Hue {
  filter: hue-rotate(45deg);
}
div .Invert {
  filter: invert(0.8);
}