/* -------------------------------
        Table of Contents
----------------------------------
    1. Reset Styles
    2. Defaults
    3. Layouts
    4. Components
------------------------------- */
/* ------------------------------
        1. Reset Styles
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

input[type=number]::-webkit-inner-spin-button {
  display: none;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

button {
  border: none;
  background: none;
  outline: none;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0.1607843137);
}

/* ------------------------------
        2. Defaults
------------------------------ */
* {
  font-family: "Poppins", sans-serif;
}

body {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #000000;
  background: #ffffff;
  overflow: hidden;
}

/* ------------------------------
          3. Layouts
  ------------------------------ */
.main {
  overflow: hidden;
}

.section {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  padding: 1rem 2rem;
}
.section--coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--coming-soon .section__body {
  width: 100%;
  max-width: 494px;
}
.section--coming-soon .section__body__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.section--coming-soon .section__body__content__promotion {
  font-weight: 400;
  font-size: 20px;
  line-height: 32.79px;
  letter-spacing: 0px;
  text-align: center;
}
.section--coming-soon .section__body__content__description {
  font-weight: 800;
  font-size: 74.74px;
  line-height: 81.69px;
  letter-spacing: -1.91px;
  color: rgb(94, 177, 171);
}

/* ------------------------------
          4. Components
  ------------------------------ */
.social-buttons {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}

.mascot {
  position: absolute;
  top: 10%;
  right: 0;
}/*# sourceMappingURL=style.css.map */