@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Modak&display=swap");
/* Variables */
/* Reset */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #599190;
}

/* Style */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  color: #ffffff;
  text-align: center;
}

.wrapper .cross-icon {
  max-width: 8em;
  margin-bottom: 1.5em;
}

.wrapper h1 {
  font-size: 4em;
  font-weight: bold;
}

.wrapper h2 {
  font-size: 2em;
}

.wrapper section {
  margin-top: 2em;
}

.wrapper section p,
.wrapper section span {
  margin: 0.5em 0;
}

.wrapper section a {
  margin: 0.5em 0;
  color: #ffffff;
  text-decoration: underline;
}

.wrapper section a:hover {
  color: #fbabc4;
}

.wrapper .address span {
  display: block;
  font-size: 18px;
}

.links {
  position: absolute;
  left: 2em;
  bottom: 2em;
}

.links a {
  font-family: "Modak", cursive;
  font-size: 1.75em;
  color: #fbabc4;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0.5em 0;
}

.links a::before {
  content: "\2192";
  margin-right: 0.5em;
}

.links a:hover {
  color: #ffffff;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: repeating-radial-gradient(circle, transparent, transparent 3.5em, #ffffff33 3.5em, #ffffff33 4.5em);
  background-blend-mode: multiply;
  background-size: 14em 14em;
  background-position: 0 0, 10em 10em, 20em 10em;
}

@media all and (max-height: 600px) {
  .wrapper {
    padding-top: 2em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .wrapper .cross-icon {
    max-width: 4em;
    margin-bottom: 0.75em;
  }
  .wrapper h1 {
    font-size: 2.75em;
    padding: 0 1em;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .wrapper h2 {
    font-size: 1.5em;
  }
  .wrapper section {
    padding: 0 1em;
  }
}
/*# sourceMappingURL=style.css.map */