body {
  background: #eaf6f6;
  font-family: "Work Sans", sans-serif;
}

.container {
  max-width: 600px;
  display: block;
  margin: 30px auto;
  text-align: center;
}

h1 {
  background: #f76b8a;
  border: 2px solid #f6b6c4;
  border-radius: 10px;
  color: #ffffff;
  font-family: "Winky Rough", sans-serif;
  font-size: 38px;
  padding: 20px;
}

main {
  background: #fcfefe;
  border: 1px solid #66bfbf;
  border-radius: 10px;
  margin: 30px auto;
  padding: 30px 20px;
  display: block;
  max-width: 600px;
}

h2 {
  font-size: 22px;
  font-weight: 300;
  line-height: 28px;
  margin: 0 0 40px 0;
}

p {
  margin: 0;
}

.material-symbols-outlined {
  color: #f76b8a;
  transform: rotate(90deg);
}

.form-wrapper {
  margin: 40px 0;
}

.workout-form {
  display: flex;
  justify-content: space-between;
}

.workout-text-input,
.create-workout-button {
  border: none;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(151, 151, 151, 0.15);
  font-family: "Work Sans", sans-serif;
  padding: 15px;
}

.workout-text-input {
  background: #eaf6f6;
  font-size: 16px;
  width: 71%;
}

.create-workout-button {
  background: #66bfbf;
  color: #ffffff;
  font-size: 18px;
  width: 21%;
}

.hint {
  color: #f6b6c4;
  font-size: 12px;
  line-height: 1.5;
  padding: 2px 0 0 10px;
  text-align: left;
}

.workout-output {
  border-left: 3px groove #f76b8a;
  border-right: 3px groove #f76b8a;
  border-radius: 10px;
  line-height: 24px;
  margin-top: 30px;
  padding: 5px 10px;
}

@keyframes blink {
  50% {
    opacity: 0.2;
    color: #66bfbf;
  }
}
.generating {
  animation: blink 0.8s step-start 0s infinite;
}

footer {
  font-size: 12px;
}

footer a {
  color: #f76b8a;
  text-decoration: none;
}
