/* CSS */
@font-face {
  font-family: 'Coconat';
  src: url(assets/font/Coconat-Regular.otf);
}
::selection {
  color: #010101;
  background: #eb6541;
}
html {
  height: 100%;
  background-color: #010101;
  color: #f6f1e1;
  font-family: 'Coconat', serif; 
}
body {
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
header {
  flex: 0 0 auto;
  padding: 20px 20px 0 20px;
  margin-bottom: auto;
}
main {
  flex: 0 0 auto;
  padding-inline: 20px;
}
.logo,
.cauldron {
  display: block;
  margin-inline: auto;
}
.logo {
  width: 80%;
  max-width: 480px;
}
.cauldron {
  width: 100%;
  max-width: 600px;
}
.button {
  display: block;
  margin: 40px auto;
  width: 180px;
  padding: 10px;
  background-color: #00973e;
  text-align: center;
  font-size: 24px;
  color: black;
  text-decoration: none;
}
#mc_embed_signup {
  max-width: 480px;
  margin: 40px auto;
}
#mc_embed_signup_scroll {
  display: flex;
  flex-wrap: wrap;
}
#mce-responses {
  margin-top: 10px;
  flex: 0 0 100%;
  max-width: 100%;
  order: 2;
  text-align: center;
}
#mc_embed_signup div.mce_inline_error {
  background-color: #EB6541;
}
form {
  max-width: 480px;
}
input {
  border: none;
  box-shadow: none;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  padding: 10px;
  border-radius: 0;
}
input[type="submit"] {
  cursor: pointer;
  background-color:#d7c83d;
  color: #010101;
}
@media (min-width: 520px) {
  #mc_embed_signup_scroll {
      display: flex;
      flex-wrap: wrap;
  }
  .mc-field-group {
    flex: 1 0 auto;
  }
  .mc-field-group input {
    width: 100%;
  }
  input {
    width: auto;
  }
}
footer {
  flex: 0 0 auto;
  margin-top: auto;
  margin-inline: 20px;
  padding-block: 20px;
  border-top: 2px solid;
}
footer p {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}
@keyframes fadeinall {
  0% {
    opacity: 1; }
  97% {
    opacity: 0; }
  98% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1; } 
}
#fadein {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  background-color: #010101;
  z-index: 999;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation: fadeinall 1s normal both;
  animation: fadeinall 1s normal both;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; 
}