* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

:root {
  --bg: linear-gradient(180deg, #ededed, hsla(0, 0%, 93%, 0.5) 113.33%);
}

body {
  display: flex;
  background-color: #070607;
  background-image: url("../assets/images/bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1440px;
  height: 100vh;
  color: white;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  z-index: 2;
  opacity: 0;
  padding: 20px;
  animation: 1s fadeIn forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mensrea-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

/* ------------- Typography------------- */
h1,
h2 {
  font-weight: 200;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: var(--bg, linear-gradient(180deg, #f4f3f2 1.98%, hsla(30, 8%, 95%, 0.7) 100%));
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
}

/* ------------- Waitlist button ------------- */
.btn {
  position: relative;
  background-color: rgba(16, 30, 231, 0.253);
  padding: 12px 20px;
  color: white;
  border-radius: 5px;
  border: solid 1px rgb(16, 30, 231);
  background-clip: padding-box;
  box-shadow: 0px 0px 2px rgb(16, 30, 231);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  font-size: 15px;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.btn::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, rgba(76, 74, 204, 0.253), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.btn:hover::before {
  --size: 100px;
}

.text-styling {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

/* ------------- Waitlist ------------- */
.waitlist-overlay {
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.719);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  pointer-events: none;
  transition: 0.5s opacity;
  z-index: 100;
}
.waitlist-overlay.waitlist-open {
  opacity: 1;
  pointer-events: all;
}
.waitlist-overlay.waitlist-open .waitlist {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.5s;
}
.waitlist-overlay .waitlist {
  opacity: 0;
  max-width: 550px;
  background-color: rgba(16, 15, 17, 0.95);
  box-shadow: 0px 0px 5px #424242;
  color: #b2b4b9;
  text-align: start;
  border-radius: 5px;
  transition: 0.3s transform, opacity;
  transform: scale(0.8);
}
.waitlist-overlay .waitlist .waitlist-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #292929;
}
.waitlist-overlay .waitlist .waitlist-top p {
  font-size: 19px;
  letter-spacing: 1.5px;
  color: white;
}
.waitlist-overlay .waitlist .waitlist-text {
  padding: 20px;
  border-bottom: 1px solid #292929;
  line-height: 1.5;
  font-size: 16px;
}
.waitlist-overlay .waitlist .waitlist-text span {
  display: block;
  color: #e8a137;
  font-size: 10px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.waitlist-overlay .waitlist form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  padding-bottom: 30px;
}
.waitlist-overlay .waitlist form label {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.waitlist-overlay .waitlist form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.waitlist-overlay .waitlist form .form-item {
  width: 100%;
}
.waitlist-overlay .waitlist form input {
  width: 100%;
  background-color: transparent;
  color: #b2b4b9;
  border: 1px solid #292929;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(32, 32, 32, 0.3019607843);
  box-shadow: 0px 0px 5px #292929;
  font-family: inherit;
}
.waitlist-overlay .waitlist form input[type=submit] {
  display: flex;
  cursor: pointer;
  width: auto;
  margin-top: 15px;
  border: none;
  background-color: #292929;
  box-shadow: none;
  color: #b2b4b9;
}
.waitlist-overlay #close {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  background-color: #292929;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  gap: 5px;
}
.waitlist-overlay #close svg {
  width: 20px;
}

/* ------------- Background boxes ------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(40, 1fr);
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: 1s fadeIn forwards;
  animation-delay: 0.5s;
}
.grid .box {
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.028);
  width: 100%;
}

/* ------------- media queries ------------- */
@media only screen and (max-width: 1440px) {
  body {
    background-size: 1200px;
  }
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  body {
    background-size: 950px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    background-size: 120%;
  }
  img {
    max-width: 350px;
  }
  h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .glowing-btn {
    font-size: 1em;
  }
}
@media only screen and (min-width: 481px) {
  body {
    min-height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  body {
    background-size: 260%;
  }
  img {
    max-width: 300px;
  }
  .glowing-btn {
    font-size: 1em;
  }
}
@media only screen and (max-width: 768px), (max-height: 700px) {
  .waitlist-overlay {
    align-items: start;
    padding: 0;
  }
  .waitlist-overlay.waitlist-open {
    opacity: 1;
    pointer-events: all;
  }
  .waitlist-overlay.waitlist-open .waitlist {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
  }
  .waitlist-overlay .waitlist {
    max-width: 100%;
    min-height: 100%;
  }
  .waitlist-overlay .waitlist .waitlist-top {
    padding: 15px;
  }
  .waitlist-overlay .waitlist .waitlist-top p {
    font-size: 20px;
  }
  .waitlist-overlay .waitlist .waitlist-text {
    padding: 15px;
    font-size: 14px;
  }
  .waitlist-overlay .waitlist form {
    padding: 15px;
  }
  .waitlist-overlay .waitlist form .form-row {
    grid-template-columns: 1fr;
  }
  .waitlist-overlay #close {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    background-color: #292929;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    gap: 5px;
  }
  .waitlist-overlay #close svg {
    width: 20px;
  }
}/*# sourceMappingURL=styles.css.map */