/* CSS Reset */
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  cursor: pointer;
  transition: opacity ease-in-out 0.2s;
}
button:hover, button:focus {
  opacity: 0.8;
}

button:focus {
  outline: none;
}

ul,
ol,
dd {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  font-family: "Lequire";
}

cite {
  font-style: normal;
}

input::-moz-focus-inner,
textArea,
input {
  border: 0;
}

fieldset {
  border-width: 0;
}

/* Font Imports */
@font-face {
  font-family: "Lequire";
  font-weight: 300;
  src: url(/assets/fonts/lequire.otf) format("opentype");
}
.container {
  margin: 0 auto;
  padding: 0 30px;
  background: #071f22;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-mask-position: 0;
    mask-position: 0;
  }
  60% {
    opacity: 1;
    -webkit-mask-position: 0;
    mask-position: 0;
  }
  99% {
    opacity: 1;
    -webkit-mask-position: 120%;
    mask-position: 120%;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0;
    mask-position: 0;
  }
}
.logo {
  width: clamp(250px, 250px + 20vw, 700px);
  margin-bottom: 16px;
  animation: fadeInUp 3s ease forwards;
}
.logo svg {
  width: 100%;
  height: 100%;
}

.title {
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp 3s ease forwards;
  animation-delay: 0.5s;
  user-select: none;
}

.comingSoon {
  animation: fadeIn 4s ease backwards;
  animation-delay: 2s;
  font-size: 32px;
  text-align: center;
  color: #68e0ee;
  user-select: none;
  -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.2) 50%, #000 75%);
  mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.2) 50%, #000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}
.comingSoon:hover {
  transition: mask-position 2s ease, -webkit-mask-position 2s ease;
  -webkit-mask-position: 120%;
  mask-position: 120%;
  opacity: 1;
}

@keyframes breathing {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.0125);
  }
}
.pattern {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  animation: breathing 5s ease infinite alternate;
  -webkit-mask-image: linear-gradient(135deg, rgba(2, 0, 36, 0.2) 0%, rgb(255, 255, 255) 47%, rgba(0, 212, 255, 0.2) 100%);
  mask-image: linear-gradient(135deg, rgba(2, 0, 36, 0.2) 0%, rgb(255, 255, 255) 47%, rgba(0, 212, 255, 0.2) 100%);
  -webkit-mask-position: 0;
  mask-position: 0;
}
.pattern svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100px;
}
.pattern .bottomPattern {
  bottom: 0;
}
.pattern .topPattern {
  top: 0;
  transform: translateX(-50%) scaleY(-1);
}

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