body {
  font-family: "Inter", "Poppins", "Rubik", sans-serif;
  background: #121212
    url("https://www.transparenttextures.com/patterns/black-paper.png");
  background-size: cover;
}

.container {
  margin: 20px auto;
  max-width: 600px;
  padding: 40px;
}

header {
  margin-bottom: 25px;
}

form {
  padding: 24px 20px;
  background-color: rgba(158, 158, 158, 0.6);
  border-radius: 10px;
  display: flex;
  box-shadow: 10px 10px 20px #000;
  margin-bottom: 30px;
}

.search-input {
  padding: 20px;
  border: 2px solid #2e2e2e;
  border-radius: 50px;
  font-size: 16px;
  width: 90%;
  line-height: 20px;
  color: rgb(74, 73, 73);
  outline: none;
  box-shadow: none;
  transition: all 200ms ease-in-out;
}

.search-input:focus {
  border: 3px solid #000;
}

.generate-button {
  margin-left: 20px;
  background-color: rgba(255, 64, 129, 0.8);
  color: #f5f5f5;
  font-weight: 800;
  font-family: Inter;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  padding: 14px 24px;
  box-shadow: 0 0 6px rgba(255, 255, 255);
  transition: all 200ms ease-in-out;
}

.generate-button:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255);
  cursor: pointer;
  background-color: #e751ae;
  transform: scale(1.05);
}

.post {
  background-color: rgba(255, 255, 255, 1);
  font-size: 16px;
  padding: 30px;
  line-height: 1.8;
  border-left: 8px solid #ff4081;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 10px 10px 20px #000;
}

.hidden {
  display: none;
}

h1 {
  color: #fff;
  font-weight: 800;
  font-size: 42px;
  padding: 28px;
  border-radius: 4px;
  line-height: 1.5;
  text-align: center;
  font-family: Inter;
  background: linear-gradient(
    358.3deg,
    rgb(255, 82, 168) 12.9%,
    rgb(177, 118, 240) 134.3%
  );
}

a {
  color: #f597b6;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}

a:hover {
  text-decoration: underline;
}
footer {
  color: white;
  text-align: center;
  font-size: 16px;
  margin-top: 50px;
  line-height: 1.5;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
