/* .Grain-dark-green-abstract-background-design-texture-1-hex { color: #042326; }
.Grain-dark-green-abstract-background-design-texture-2-hex { color: #0A3A40; }
.Grain-dark-green-abstract-background-design-texture-3-hex { color: #0F5959; }
.Grain-dark-green-abstract-background-design-texture-4-hex { color: #1D7373; }
.Grain-dark-green-abstract-background-design-texture-5-hex { color: #107361; } */

body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background-color: #042326;
}

#searchForm {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

label {
  font-weight: bold;
  font-size: 1.5rem;
}

#searchButton {
  background-color: white;
  color: black;
  height: 40px;
  width: 120px;
  border-radius: 10px;
  border: 4px solid #107361;
  cursor: pointer;
  font-weight: bold;
}

#searchInput {
  width: 100%;
  border-radius: 10px;
  border: 4px solid #107361;
  background-color: #d3d3d3;
}

img {
  width: 100%;
  height: 360px;
}

#content {
  max-width: 960px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 40px;
  background-color: #0a3a40;
  border-radius: 15px;
  animation: textDown 500ms;
}

@media (max-width: 739px) {
  #content {
    max-width: 400px;
  }
}

#content p {
  max-width: 330px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.content-item img {
  animation: textDown 500ms;
  margin-top: 20px;
}

.content-item p {
  animation: textDown 500ms;
  color: white;
  font-size: 1rem;
}

span {
  margin: 0 auto;
  text-align: center;
  color: white;
  font-size: 1.25em;
}

@keyframes textDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
