*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Josefin Sans";
}

[x-cloak] {
  display: none !important;
}

html,
body {
  margin: 0;
  margin-bottom: 40px;
  background-color: #2b2821;
}

h1 {
  margin: 0;
  color: #e3cfb4;
  font-size: 3rem;
  text-wrap-mode: nowrap;
}

h2 {
  margin: 0;
  color: #e3cfb4;
  font-size: 1.5rem;
}

h3 {
  margin: 0;
  color: #d9ac8b;
  font-size: 1.35rem;
}

h4 {
  margin: 0;
  color: #d9ac8b;
  font-size: 1.25rem;
  margin-block: 10px;
}

p,
label {
  color: #d9ac8b;
  margin: 0;
}

small {
  color: #624c3c;
  font-size: 0.7rem;
  color: var(--common-tint-dark);
}

.error-message {
  color: #b03a48;
}

button {
  box-sizing: content-box;
  width: fit-content;
  height: fit-content;
  padding: 10px 20px;
  border: 1px solid #d9ac8b;
  border-radius: 0;
  margin: 0;
  color: #d9ac8b;
  background-color: #2b2821;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  appearance: none;
  transform: skewX(-10deg);
}
button:hover {
  color: #e3cfb4;
  border-color: #e3cfb4;
}

.close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  transform: none;
  color: #e3cfb4;
  background-color: #b03a48;
}
.close-button svg {
  stroke: #e3cfb4;
  fill: #e3cfb4;
  stroke-width: 50px;
}

input,
select {
  display: block;
  width: 100%;
  height: fit-content;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-bottom-color: #e3cfb4;
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  color: #e3cfb4;
  font-size: 1.2rem;
  font-weight: 500;
  outline: none;
  appearance: none;
}
input::placeholder,
select::placeholder {
  color: #624c3c;
  font-style: italic;
}
input:focus,
select:focus {
  color: #5c8b93;
  border-color: #e3cfb4;
}
input[invalid=true],
select[invalid=true] {
  border-color: #b03a48;
}

select {
  border-color: #e3cfb4;
}

.center-text {
  text-align: center;
}

.spacer {
  height: 50px;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.rel-pos {
  position: relative;
}

.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.display-contents {
  display: contents;
}

main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.blur {
  filter: blur(10px);
  cursor: default;
}

.backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 300px;
  background-image: repeating-linear-gradient(to right, #5c8b93, #5c8b93 1%, #2b2821 1%, #2b2821 6%);
  transform: skewX(-30deg) translate(-60%, -50%);
}

.dialogue {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 350px;
  height: 466.6666666667px;
  padding: 25px;
  background-color: #b1a58d;
  z-index: 10;
}
.dialogue h2 {
  color: #b1a58d;
  background-color: #5c8b93;
  padding-top: 6px;
  text-align: center;
}
.dialogue label {
  color: #2b2821;
}
.dialogue .create-button {
  align-self: center;
  border: none;
  color: #b1a58d;
  background-color: #3e6958;
}

.mc-card {
  position: relative;
  width: 6rem;
  height: 8rem;
  background-color: #e3cfb4;
  animation: flip-card 10s linear infinite forwards;
  color: #2b2821;
}
.mc-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #e3cfb4;
  background-color: #2b2821;
  visibility: hidden;
  animation: flip-card-back 10s step-end infinite forwards;
}
.mc-card p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: bold;
  color: inherit;
}

.mc-card-1-1 {
  animation-delay: 2200ms;
}
.mc-card-1-1::before {
  animation-delay: 2200ms;
}

.mc-card-1-2 {
  animation-delay: 2400ms;
}
.mc-card-1-2::before {
  animation-delay: 2400ms;
}

.mc-card-1-3 {
  animation-delay: 2600ms;
}
.mc-card-1-3::before {
  animation-delay: 2600ms;
}

.mc-card-1-4 {
  animation-delay: 2800ms;
}
.mc-card-1-4::before {
  animation-delay: 2800ms;
}

.mc-card-1-5 {
  animation-delay: 3000ms;
}
.mc-card-1-5::before {
  animation-delay: 3000ms;
}

.mc-card-1-6 {
  animation-delay: 3200ms;
}
.mc-card-1-6::before {
  animation-delay: 3200ms;
}

.mc-card-1-7 {
  animation-delay: 3400ms;
}
.mc-card-1-7::before {
  animation-delay: 3400ms;
}

.mc-card-2-1 {
  animation-delay: 4200ms;
}
.mc-card-2-1::before {
  animation-delay: 4200ms;
}

.mc-card-2-2 {
  animation-delay: 4400ms;
}
.mc-card-2-2::before {
  animation-delay: 4400ms;
}

.mc-card-2-3 {
  animation-delay: 4600ms;
}
.mc-card-2-3::before {
  animation-delay: 4600ms;
}

.mc-card-2-4 {
  animation-delay: 4800ms;
}
.mc-card-2-4::before {
  animation-delay: 4800ms;
}

.mc-card-2-5 {
  animation-delay: 5000ms;
}
.mc-card-2-5::before {
  animation-delay: 5000ms;
}

.mc-card-2-6 {
  animation-delay: 5200ms;
}
.mc-card-2-6::before {
  animation-delay: 5200ms;
}

.mc-card-2-7 {
  animation-delay: 5400ms;
}
.mc-card-2-7::before {
  animation-delay: 5400ms;
}

.mc-card-3-1 {
  animation-delay: 6200ms;
}
.mc-card-3-1::before {
  animation-delay: 6200ms;
}

.mc-card-3-2 {
  animation-delay: 6400ms;
}
.mc-card-3-2::before {
  animation-delay: 6400ms;
}

.mc-card-3-3 {
  animation-delay: 6600ms;
}
.mc-card-3-3::before {
  animation-delay: 6600ms;
}

.mc-card-3-4 {
  animation-delay: 6800ms;
}
.mc-card-3-4::before {
  animation-delay: 6800ms;
}

.mc-card-3-5 {
  animation-delay: 7000ms;
}
.mc-card-3-5::before {
  animation-delay: 7000ms;
}

.mc-card-3-6 {
  animation-delay: 7200ms;
}
.mc-card-3-6::before {
  animation-delay: 7200ms;
}

.mc-card-3-7 {
  animation-delay: 7400ms;
}
.mc-card-3-7::before {
  animation-delay: 7400ms;
}

.mc-card-4-1 {
  animation-delay: 8200ms;
}
.mc-card-4-1::before {
  animation-delay: 8200ms;
}

.mc-card-4-2 {
  animation-delay: 8400ms;
}
.mc-card-4-2::before {
  animation-delay: 8400ms;
}

.mc-card-4-3 {
  animation-delay: 8600ms;
}
.mc-card-4-3::before {
  animation-delay: 8600ms;
}

.mc-card-4-4 {
  animation-delay: 8800ms;
}
.mc-card-4-4::before {
  animation-delay: 8800ms;
}

.mc-card-4-5 {
  animation-delay: 9000ms;
}
.mc-card-4-5::before {
  animation-delay: 9000ms;
}

.mc-card-4-6 {
  animation-delay: 9200ms;
}
.mc-card-4-6::before {
  animation-delay: 9200ms;
}

.mc-card-4-7 {
  animation-delay: 9400ms;
}
.mc-card-4-7::before {
  animation-delay: 9400ms;
}

.mc-card-5-1 {
  animation-delay: 10200ms;
}
.mc-card-5-1::before {
  animation-delay: 10200ms;
}

.mc-card-5-2 {
  animation-delay: 10400ms;
}
.mc-card-5-2::before {
  animation-delay: 10400ms;
}

.mc-card-5-3 {
  animation-delay: 10600ms;
}
.mc-card-5-3::before {
  animation-delay: 10600ms;
}

.mc-card-5-4 {
  animation-delay: 10800ms;
}
.mc-card-5-4::before {
  animation-delay: 10800ms;
}

.mc-card-5-5 {
  animation-delay: 11000ms;
}
.mc-card-5-5::before {
  animation-delay: 11000ms;
}

.mc-card-5-6 {
  animation-delay: 11200ms;
}
.mc-card-5-6::before {
  animation-delay: 11200ms;
}

.mc-card-5-7 {
  animation-delay: 11400ms;
}
.mc-card-5-7::before {
  animation-delay: 11400ms;
}

@keyframes flip-card {
  0% {
    color: #2b2821;
    transform: rotateY(0deg);
  }
  2.4% {
    color: #2b2821;
  }
  2.5% {
    color: #e3cfb4;
  }
  7.5% {
    color: #e3cfb4;
  }
  7.6% {
    color: #2b2821;
  }
  10% {
    color: #2b2821;
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes flip-card-back {
  0% {
    visibility: hidden;
  }
  2.5% {
    visibility: visible;
  }
  7.5% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}

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