body {
  background: linear-gradient(180deg, #ad9676 0%, #491c09 50%, #000000 100%);
  font-family: Geneva, Verdana, Tahoma, sans-serif;
}
a {
  color: #df7219;
  text-decoration: none;
}
.container {
  max-width: 600px;
  margin: 120px auto;
  padding: 60px;
}

header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Geneva, Verdana, Tahoma, sans-serif;
}

h1 {
  color: #ebe2e1;
  text-align: center;
  margin-top: 50px;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
}

.form-container {
  background-color: rgba(239, 217, 195, 0.623);
  margin-bottom: 50px;
  border-radius: 3px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  padding: 20px 20px;
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  color: #353534;
  font-size: 10px;
}

.instructions {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  border-radius: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background-color: #371a09;
  color: white;
  border: none;
  width: 150px;
  border-radius: 5px;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 16px;
}
.outfit {
  font-size: 16px;
  background-color: white;
  margin-top: 30px;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #c49158;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}

.hidden {
  display: none;
}

.outfit strong {
  color: #df7219;
}

.info-guide {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  margin-top: 5px;
  text-align: center;
  color: #ede6e4;
}

.how-it-works {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #c8a378;
}

.info-guide-location {
  font-size: 11px;
  line-height: 1.2;
  margin-top: 15px;
  color: #c8a378;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #c8a378;
}

/*
Source - https://stackoverflow.com/a/13955165
Posted by a pfp with melon, modified by community. See post 'Timeline' for change history
Retrieved 2026-07-30, License - CC BY-SA 4.0
*/
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

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