*,
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "TCCC-UnityTextRegular";
}

@font-face {
  font-family: "TCCC-UnityTextRegular";
  src: url("fonts/TCCC-UnityText-Regular.woff2") format("woff2"),
    url("fonts/TCCC-UnityText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.background-image {
  position: relative;
  background-image: url("globe-bg-desktop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100vw;

  overflow: hidden;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #fff;
  height: 68px;
  width: 100%;
  padding: 16px 0;
  display: flex;
  position: sticky;
  justify-content: center;
  align-items: center;
}

.header-logo {
  width: 192px;
  display: flex;
  justify-content: center;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background: #000;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;

  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-divider {
  cursor: default;
  border: 1px solid #4d4c4c;
}

.cta-banner {
  background: #fff;
  color: #000;
  padding: 40px;
  border-radius: 12px;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  line-height: 36px;
  width: 624px;
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.08),
    0px 6px 15px -2px rgba(16, 24, 40, 0.08);
}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
  .background-image {
    background-image: url("globe-bg-mobile.jpg");
    background-size: cover;
    background-position: center center;
  }

  header {
    height: 50px;
    padding: 10px 20px;
  }

  .header-logo {
    width: 192px;
  }

  .header-logo__image {
    height: 30px;
  }

  .cta-banner {
    padding: 32px 22px;
    margin: 0 20px;
    font-size: 28px;
  }

  footer {
    display: none;
  }
}
