@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&family=Zilla+Slab:wght@400;700&display=swap');

:root {
  --main-bg: #020202;
  --page-content-bg: #fff;
  --page-bg: #14121d;
  --footer: #03173e;
  --header: #262252;
  --main-font: #fff;
  --page-font: #787780;
  --highlight: #15a6f5;
  --btn: #26d313;
  --black: #000;
  --white: #fff;
  --error: #26d313;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--main-font);
  background-color: var(--main-bg);
  background-image: url('../images/main-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
a:not(.legal-link) {
  color: var(--main-font);
}
.home-page-cover {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  padding: 0 0 16.7rem;
}
.main-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sub-header-container {
  position: relative;
  padding: 2.3rem 1.3rem;
  background: #000000 url(../images/sub-header-img.webp) no-repeat right 25% bottom / contain;
}

.sub-header-text {
  width: 100%;
}
.sub-header-container h1 {
  margin-bottom: 0.5rem;
  font-family: "Zilla Slab", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.sub-header-container p {
  font-family: "Zilla Slab", sans-serif;
  font-size: 1.2rem;
}
.advertiser-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .2rem 1.3rem;
  text-align: end;
  background-color: #00000050;
}
.advertiser-container p {
  font-family: "Open Sans", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #848484;
}
.content-container {
  width: 100%;
  padding: 1.3rem;
  background-color: var(--main-bg);
}
.content-container h4 {
  text-transform: uppercase;
  font-weight: 400;
}
.content-container h4,
.content-container ul,
.content-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.3rem;
}
.content-container ul {
  list-style-type: disc;
  padding-left: 2.4rem;
}
.adv-footer-container h4 {
  margin-bottom: 0;
  font-family: "Zilla Slab", sans-serif;
  font-size: 1.25rem;
  text-transform: none;
}
.adv-footer-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .main-container {
    max-width: 767px;
  }
  .sub-header-container {
    background-position: 65%;
  }
}
@media (max-width: 767px) {
  body {
    background: none;
  }
  .main-container {
    max-width: inherit;
  }
  .sub-header-container {
    background-image: url(../images/sub-header-mobile.webp);
    background-size: contain;
    background-position: right;
    background-color: #000000;
  }
  .sub-header-text {
    width: 60%;
  }
}

@media (max-width: 500px) {
  .sub-header-container {
    background-position: right -100px bottom;
  }
}
