* {
  font-family: "aria-text-g2", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  position: relative;
  background-repeat: no-repeat;
  outline: 0;
  height: auto;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-weight: normal;
}

h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 1rem;
}

html {
  height: 100%;
  background-color: #fefdf9;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

header {
  padding: 1rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  list-style: none;
  column-gap: 1rem;
}
header nav ul li {
  margin: 0 4px;
  text-transform: uppercase;
  color: #937500;
  font-size: 1.1rem;
  line-height: 1.1rem;
}
header nav ul li .active {
  font-weight: 700;
  text-shadow: none;
}
header h1 {
  font-family: "leander-script-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 5rem;
  line-height: 5rem;
  margin-bottom: 4rem;
  color: black;
}
header h1 span {
  font-size: 1rem;
  text-transform: uppercase;
}

footer {
  padding: 1rem;
  background-color: #d0b04d;
}
footer p {
  margin: 0;
}

main {
  padding: 1rem;
  flex: 1;
}
main #container::after {
  width: 10rem;
  height: 2px;
  background-color: black;
  display: block;
  content: " ";
  margin: 2rem auto 0 auto;
}

a,
a:visited {
  color: #937500;
}

p {
  max-width: 45rem;
  line-height: 1.5rem;
  margin: 0 auto 1.5rem auto;
}

button {
  background-color: #fff6bc;
  color: #443c23;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #ffe37e;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
}
button:hover {
  background-color: #ffee9c;
}
button:active {
  background-color: #ffe37e;
}

form {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fffbeb;
  border: 1px solid #f5d576;
  border-radius: 0.5rem;
  max-width: 25rem;
  margin: 0 auto;
}
form label {
  font-weight: 700;
  color: #443c23;
  margin-bottom: 0.25rem;
}
form input,
form select {
  border: 1px solid #dbd8d7;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-radius: 6px;
}
form input:focus,
form select:focus {
  outline: 2px solid #d0b04d;
}
form .alert {
  text-align: center;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 24px;
  height: auto;
  transition: 0.25s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
form .alert.hidden {
  height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

/*# sourceMappingURL=styles.css.map */