@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

body {
  background: #d9b575 url(/assets/bg-3107c330e5c04e07b828ba29b427bb7701c5b5ea7ac52beadaa1a959426e3de3.webp) repeat 50% 50%;
  background-size: cover;
  font: 400 62.5% "Montserrat", sans-serif;
  color: #fff;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
}

.splash-wrapper {
  text-align: center;
  padding: 15px;
}

.logo {
  display: block;
  object-fit: contain;
  height: 50vh;
}
@media screen and (max-width: 560px) {
  .logo {
    height: auto;
    width: 90vw;
  }
}

h1 {
  font: 400 20em "Lobster", cursive;
  margin: 0;
  line-height: 1;
  text-shadow: #59371e 0 2px 10px;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 16em;
  }
}
@media screen and (max-width: 560px) {
  h1 {
    font-size: 9em;
  }
}

h2 {
  text-transform: uppercase;
  font-size: 3.6em;
  line-height: 1;
  margin: 0;
  text-shadow: #59371e 0 2px 10px;
}
@media screen and (max-width: 560px) {
  h2 {
    font-size: 2.4em;
  }
}

p {
  font-weight: 500;
  font-size: 2.1em;
  margin: 20px 0 0;
  line-height: 1.4;
  text-shadow: #59371e 0 2px 10px;
}
@media screen and (max-width: 560px) {
  p {
    font-size: 1.8em;
  }
}
p a {
  color: #fff;
  border-bottom: 1px dashed white;
  text-decoration: none;
}

.button {
  font: 600 2.4em "Montserrat", sans-serif;
  line-height: 60px;
  text-transform: uppercase;
  display: inline-block;
  background: #199994;
  padding: 0 50px;
  margin-top: 25px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: #59371e 0 2px 10px;
  transition: all 0.15s ease-out;
}
.button:hover {
  box-shadow: #59371e 0 1px 6px;
}

.banner {
  background: #d9631d;
  padding: 10px;
  border-radius: 6px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 1;
  text-align: center;
  box-shadow: #59371e 0 1px 6px;
}
.banner p {
  margin: 0;
  font-size: 1.6em;
}
