@font-face {
  font-family: "Chillax-Variable";
  src: url("./fonts/Chillax-Variable.woff2") format("woff2"),
    url("./fonts/Chillax-Variable.woff") format("woff"),
    url("./fonts/Chillax-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Chillax-Extralight";
  src: url("./fonts/Chillax-Extralight.woff2") format("woff2"),
    url("./fonts/Chillax-Extralight.woff") format("woff"),
    url("./fonts/Chillax-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Chillax-Light";
  src: url("./fonts/Chillax-Light.woff2") format("woff2"),
    url("./fonts/Chillax-Light.woff") format("woff"),
    url("./fonts/Chillax-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Chillax-Regular";
  src: url("./fonts/Chillax-Regular.woff2") format("woff2"),
    url("./fonts/Chillax-Regular.woff") format("woff"),
    url("./fonts/Chillax-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Chillax-Medium";
  src: url("./fonts/Chillax-Medium.woff2") format("woff2"),
    url("./fonts/Chillax-Medium.woff") format("woff"),
    url("./fonts/Chillax-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Chillax-Semibold";
  src: url("./fonts/Chillax-Semibold.woff2") format("woff2"),
    url("./fonts/Chillax-Semibold.woff") format("woff"),
    url("./fonts/Chillax-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Chillax-Bold";
  src: url("./fonts/Chillax-Bold.woff2") format("woff2"),
    url("./fonts/Chillax-Bold.woff") format("woff"),
    url("./fonts/Chillax-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #00041b;
}

section {
  width: 100%;
  padding: 1em;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding: 8em 6em;
}

h1 {
  font-size: 80px;
  letter-spacing: -4px;
  font-weight: 500;
  line-height: 100%;
  font-family: "Chillax-Medium", sans-serif;
  color: #fff;
}

h2 {
  letter-spacing: -2px;
  font-size: 56px;
  font-weight: 500;
  line-height: 100%;
  font-family: "Chillax-Medium", sans-serif;
  color: #fff;
  margin: 0.5em 0 0.25em 0;
}

h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 100%;
  font-family: "Chillax-Medium", sans-serif;
  color: rgba(255, 255, 255, 1);
  margin: 0.5em 0;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}

p#callout {
  width: max-content;
  background: rgba(255, 255, 255, 0.125);
  padding: 0.25em 1.25em;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 20px;
  color: #fff;
  margin: 1em 0;
}

a {
  text-decoration: none;
  color: #fff;
  font-family: "Inter";
}

button {
  border: none;
  background: #fcff66;
  border-radius: 48px;
  font-size: 14px;
  padding: 12px 24px;
  font-weight: 500;
}

button a {
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

footer .container {
  padding: 1em 6em;
}

.footer-links {
  padding: 2em 0;
}

footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}

footer .f-links-col p {
  color: #fff;
  font-family: "Chillax-Medium";
  font-size: 16px;
  margin-bottom: 0.25em;
}

footer .f-links-col a {
  line-height: 240%;
}

.f-row {
  display: flex;
}

.f-logo {
  flex: 3;
}

.f-logo a {
  font-family: "Chillax-Medium";
  color: #fff;
  font-size: 20px;
}

.f-logo a i {
  position: relative;
  top: 2px;
}

.f-links {
  flex: 4;
}

.f-links {
  display: flex;
  gap: 2em;
}

.f-links-col {
  flex: 1;
}

.f-subscribe {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}

.sub-form input {
  width: 250px;
  background: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-form button {
  background: rgb(45, 45, 210);
  color: #fff;
  margin: 0 0.25em;
}

.sub-form ::placeholder {
  font-family: "Inter";
}

.f-ctext {
  padding: 0.5em 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials {
  display: flex;
  gap: 1em;
}

.socials a {
  font-size: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .container {
    padding: 4em 2em;
  }

  h1 {
    font-size: 56px;
    letter-spacing: -2px;
  }

  h2 {
    letter-spacing: -1px;
    font-size: 40px;
    line-height: 110%;
  }

  p {
    font-size: 14px;
  }

  .container {
    width: 100%;
  }

  footer .container {
    padding: 1em 2em;
  }

  .f-row {
    flex-direction: column;
  }

  .footer-links {
    gap: 2em;
  }

  .f-links {
    flex-direction: column;
  }

  .f-subscribe,
  .f-ctext {
    align-items: flex-start;
    gap: 2em;
  }

  .f-ctext {
    flex-direction: column-reverse;
  }
}
