*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* & end css reset */

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #f8f8f8;
  color: #333333;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  justify-content: space-between;
  align-items: center;
}

header {
  width: 100%;
  padding-top: 60px;
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Bitter", serif;
  font-optical-sizing: auto;

  font-style: normal;
}

.logo-main {
  font-size: 5em;
  font-weight: 700;
  color: #222222;
  line-height: 1;
  font-weight: 200;
}

.logo-sub {
  font-size: 1.5em;
  color: #555555;
  margin-top: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}

.divider {
  border: none;
  border-top: 1px solid #cccccc;
  width: 30%;
  margin: 0 15px;
}

.coming-soon-text {
  font-family: "Open Sans", sans-serif;
  font-size: 3em;
  color: #444444;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
  white-space: nowrap;
}

footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  margin-top: auto;
}

.social-media a {
  user-select: none;
  color: #333333;
  font-size: 28px;
  margin: 0 18px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}

.social-media a:hover {
  color: #007bff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .logo-main {
    font-size: 3.5em;
  }

  .logo-sub {
    font-size: 1.2em;
  }

  .coming-soon-text {
    font-size: 2em;
  }

  .divider {
    width: 20%;
    margin: 0 10px;
  }

  .social-media a {
    font-size: 24px;
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  header {
    padding-top: 30px;
  }

  .logo-main {
    font-size: 3.1em;
  }

  .logo-sub {
    font-size: 1em;
    letter-spacing: 0.15em;
  }

  .coming-soon-text {
    font-size: 1.5em;
    padding: 0 5px;
  }

  .divider {
    width: 15%;
  }

  .social-media a {
    font-size: 20px;
    margin: 0 8px;
  }
}
.background-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.background-bubbles div {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(119, 119, 119, 0.781);
  animation: animateBubbles 25s linear infinite;
  bottom: -150px;
  border-radius: 100%;
}

.background-bubbles div:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  animation-duration: 15s;
}
.background-bubbles div:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.background-bubbles div:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  animation-duration: 18s;
}
.background-bubbles div:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 10s;
}
.background-bubbles div:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  animation-duration: 20s;
}
.background-bubbles div:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
  animation-duration: 13s;
}
.background-bubbles div:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
  animation-duration: 25s;
}
.background-bubbles div:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 17s;
}
.background-bubbles div:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.background-bubbles div:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animateBubbles {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
    border-radius: 0;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
