@font-face {
  font-family: "sublima-light";
  src: url("/assets/Sublima-Light.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "sublima-extrabold";
  src: url("/assets/Sublima-ExtraBold.otf");
  font-weight: bold;
  font-style: normal;
}

* {
  font-family: sublima-light;
  font-weight: lighter;
  box-sizing: border-box;
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
label {
  color: white;
}

label {
  font-size: 20px;
}

a {
  text-decoration: none;
}

h1 {
  margin: none;
  line-height: 130%;
}

h2 {
  font-size: 20px;
}

html,
body {
  height: 100%;
}

strong,
button {
  font-family: sublima-extrabold;
}
button {
  background-color: #63dc00;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 4px 28px;
}

input {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 16px;
  flex-grow: 2;
}

.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background: url("/assets/Background-gradient.jpg"); */
  background: linear-gradient(
      to right,
      #ff0000 0%,
      rgb(196, 193, 0) 65%,
      #33ff01 150%
    ),
    url("background-image.jpg");
  background-size: contain;
  z-index: -1;
}

.content::before {
  content: "";
  background-image: url("/assets/girl-on-the-sky.png"),
    url("/assets/Wave-1.png"), url("/assets/wave-2.png");
  background-position: center;
  background-size: contain, cover, cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.content {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  /* gap: 2rem; */
  align-items: left;
  justify-content: space-between;
  padding: 4rem;
  z-index: 1;
}

@media (max-width: 520px) {
  .content {
    padding: 2rem 2rem 1rem;
    align-items: center;
  }
}

.girl-container {
  position: absolute;
  display: flex;
  width: 100%;
  z-index: 0;
}

.girl-img {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
}

.header {
  margin-bottom: 4rem;
}
.header-logo {
  color: black;
  height: 4rem;
}
.sub-line {
}
.subscription {
}

.input-group {
  display: flex;
  gap: 2px;
  width: 25rem;
  background-color: white;
  border-radius: 8px;
  padding: 5px;
  margin-top: 1rem;
}

.form-button {
}

.coming-soon {
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1000px) {
  .footer {
    flex-direction: column;
    padding-top: 4rem;
  }
}

.footer-links {
  display: flex;
  position: relative;
  top: 30px;
  flex-direction: column;
  align-items: end;
}

.app-imgs {
  display: flex;
  gap: 1.5rem;
  margin-top: 8px;
}

.app-icon {
  height: 3rem;
}

.socials-links {
  display: flex;
  gap: 2rem;
}

.socials-icon {
  width: 3rem;
}

.policy {
  color: white;
}
