body {
  color: #ed1c29;
  letter-spacing: .75px;
  text-transform: uppercase;
  background-color: #000;
  flex-flow: column;
  align-items: stretch;
  font-family: gineso, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.main {
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.header {
  z-index: 10;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 2.5vh;
  padding-right: 2.5vh;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}

.nav__list {
  flex-flow: row;
  list-style-type: none;
  display: flex;
}

.nav__item {
  margin-left: 15px;
  list-style-type: none;
}

.navbar {
  width: auto;
}

.nav__link {
  width: 100%;
  height: 100%;
  line-height: 15px;
  display: block;
}

.text__span {
  margin-right: 5px;
}

.css__styles {
  display: none;
}

.content__top {
  z-index: 1;
  background-color: #000;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  padding: 10vh 10vh 20vh;
  display: flex;
  position: relative;
  inset: 0%;
}

.jp__logo {
  object-fit: contain;
  object-position: 0% 100%;
  width: 60vh;
  min-width: 400px;
  display: block;
}

.section__bottom {
  z-index: 0;
  color: #000;
  background-color: #ed1c29;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 90vh;
  padding: 10vh 2.5vh 2.5vh;
  display: flex;
  position: fixed;
  bottom: 0;
}

.fine__print {
  margin-bottom: 0;
}

.section__top {
  width: 100%;
  height: 120vh;
}

@media screen and (max-width: 991px) {
  .jp__logo {
    max-width: 500px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
    line-height: 26px;
  }

  .content__top {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .jp__logo {
    min-width: 200px;
    max-width: 400px;
  }

  .section__bottom {
    flex-flow: column;
    align-items: flex-start;
    padding-top: 50px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 10px;
    line-height: 20px;
  }

  .header {
    padding-top: 10px;
    padding-right: 15px;
  }
}


