@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  color: #E4D8C7;
  overflow: hidden;
  background-color: #16171A;
  background-image: url("../img/bg.png");
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 22px;
  line-height: 32px;
}
body canvas {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  position: absolute;
  z-index: -1;
}
body .container {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  body .container {
    flex-direction: row;
  }
}
body .container .column {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  body .container .column {
    width: 50%;
    height: 100%;
  }
}
body .container .right .content-wrapper p {
  text-align: right;
}
body .container .right .content-wrapper span.pink {
  color: #C5728A;
}
body .container .right .content-wrapper .button.cta {
  display: inline-block;
  background: rgba(74, 85, 102, 0.2);
  background: linear-gradient(0deg, rgba(74, 85, 102, 0.15) 30%, rgba(115, 132, 158, 0.2) 100%);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  padding: 8px 30px;
  margin: 16px 0;
  border-radius: 10px;
  transition: color 0.5s ease-out;
}
body .container .right .content-wrapper .button.cta:hover {
  transition: color 0.5s ease-in;
  color: #C5728A;
}
body img.logo {
  display: block;
  width: 260px;
  max-width: 80%;
}/*# sourceMappingURL=style.css.map */