@font-face {
  font-family: Poppins;
}

body {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background: #f5f5f5;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fcfcfc;
  margin-top: 2rem;
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 1px;
  }
}
.outer-div {
  position: relative;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-image {
  background-image: url("./bg_stars.png");
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80vw;
  max-width: 1144px;
  height: 520px;
  border-radius: 20px;
  /* border: 1px solid #d5585c; */
  padding: 24px;
  flex-direction: column;
  /* gap: 36px; */
  z-index: 100;
  gap: 0px;
  color: #d2d2d2;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  background: #fff;
  box-shadow: 0px 12px 6px -4px rgba(27, 27, 27, 0.12),
    0px 4px 6px -2px rgba(27, 27, 27, 0.03);
}

@media screen and (max-width: 640px) {
  .inner-div {
    height: 75vh;
  }
}

.logo-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 53px;
  color: #080014;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  .logo {
    width: 32px;
    height: 32px;
  }
  .logo-text {
    margin: 0;
    font-size: 24px;
  }
}

.hr {
  border: none;
  width: 80%;
  border-top: 1px solid #e5e7eb; /* you can choose the color of the line */
  color: #000; /* this is the color of the line */
  overflow: visible;
  text-align: center;
  height: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.paragraph-text {
  color: rgba(8, 0, 20, 0.8);
  font-weight: 400;
  font-size: 21px;
  margin: 0;
}

/* .dexter-logo {
  visibility: hidden;
} */
.dexter-text {
  display: none;
}

@media screen and (max-width: 640px) {
  .paragraph-text {
    color: rgba(8, 0, 20, 0.8);
    font-weight: 400;
    font-size: 16px;
    margin: 0;
  }
  .dexter-logo {
    display: none;
  }
  .dexter-text {
    display: inline;
    color: rgba(8, 0, 20, 0.8);
    font-weight: 400;
    font-size: 16px;
    margin: 0;
  }
}

.dexter-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  color: rgba(8, 0, 20, 0.8);
  font-weight: 400;
  font-size: 21px;
}
.link {
  color: #fcfcfc;
  text-underline-offset: 2px;
}

.coming-soon {
  margin-top: 66px;
  background: rgba(222, 86, 86, 0.1);
  border-radius: 36px;
  color: #de5656;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  .coming-soon {
    margin-top: 66px;
    background: rgba(222, 86, 86, 0.1);
    border-radius: 36px;
    color: #de5656;
    padding: 16px 80px;
    font-size: 18px;
    font-weight: 600;
  }
}

@media screen and (max-width: 360px) {
  .coming-soon {
    margin-top: 66px;
    background: rgba(222, 86, 86, 0.1);
    border-radius: 36px;
    color: #de5656;
    padding: 16px 60px;
    font-size: 18px;
    font-weight: 600;
  }
}

footer {
  background: #de5656;
  height: 275px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  /* margin-bottom: 1rem; */
}
.footer-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fcfcfc;
  margin-top: 2px;
}

.about {
  font-size: 14px;
  color: #fcfcfc;
  font-weight: 500;
  text-decoration: none;
  padding-top: 2px;
}

.link-footer {
  text-decoration: none;
}

.link-footer:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #fcfcfc;
}
