* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(251, 224, 228);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#container {
  width: 100%;
  height: 100vh;
  background-image: url("calming.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}
#contents {
  position: relative;
  top: 200px;
}
header {
  text-align: center;
  margin: 0px 50px 50px 50px;
}
h1 {
  font-size: 32px;
  color: #be8abf;
}
h2 {
  font-size: 24px;
  color: #ea9abb;
}
footer {
  text-align: center;
  margin: 50px auto;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  font-size: 12px;
}
a {
  color: #be8abf;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

#generator-container {
  display: block;
  margin: 0 auto;
  padding: 20px;
  background-color: #f2d9cf;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(77, 76, 76, 0.4);
}
#textInputElement {
  width: 70%;
  padding: 5px 10px;
  border-radius: 5px;
  border-color: rgba(124, 122, 122, 0.4);
  box-shadow: 0px 3px 5px rgba(215, 125, 155, 0.4);
  background-color: whitesmoke;
  font-size: 14px;
  color: #ea9abb;
}
#submitButton {
  width: 20%;
  margin: 0 0 0 20px;
  padding: 5px;
  font-size: 14px;
  border-radius: 5px;
  border-color: rgba(124, 122, 122, 0.4);
  box-shadow: 0px 3px 5px rgba(215, 125, 155, 0.4);
  color: #ea9abb;
  background-color: whitesmoke;
}
#hint {
  margin-top: 5px;
  margin-left: 3px;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.4;
}

#positive-statement {
  display: block;
  margin: 20px auto 0 auto;
  padding: 20px;
  background-color: #f2d9cf;
  max-width: 600px;
  border-left: 4px solid #ea9abb;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(77, 76, 76, 0.4);
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.5;
}
#positive-statement strong {
  color: #ea9abb;
}
.hidden {
  display: none !important;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
#reset {
  position: relative;
  left: 417px;
  bottom: 15px;
  margin-top: 3px;
}
#reset-page {
  background-color: whitesmoke;
  color: #ea9abb;
  padding: 4px 37px;
  border: 2px solid rgba(124, 122, 122, 0.5);
  border-radius: 5px;
  box-shadow: 0px 3px 5px rgba(215, 125, 155, 0.4);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
