html {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #EEE;
  line-height: 2;
  background-color: #333;
}

.header {
  display: flex;
  flex-direction: column;
}

.title {
  display: flex;
  justify-content: center;
}

.banner-wrapper {
  line-height: 0;
  display: flex;
  align-items: center;
}


.banner-wrapper img {
  display: block;
  width: 80vw;
  object-fit: contain;
}

.banner-info {
  text-align: center;
  background: #ffe66e;
  background: -moz-linear-gradient(top, #ffe66e 0%, #fdbe01 100%);
  background: -webkit-linear-gradient(top, #ffe66e 0%,#fdbe01 100%);
  background: linear-gradient(to bottom, #ffe66e 0%,#fdbe01 100%);
  border-radius: 1rem;
  color: #242423;
  padding: 0 1rem;
}

.nav-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-size: clamp(0.5rem, -0.0881rem + 1.159vw, 0.9rem);
}

.menu-item {
  order: 2;
}

.menu-item a {
  color: white;
  display: flex;
  text-align: center;
  padding: 2px 5px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.menu-item-homepage {
}

.menu-item-ticker {
}

.banner-info {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;

}
.menu-item-ticker-line {
  white-space: nowrap;
}

.hamburger-menu {
  position: absolute;
  /* top: 0; */
  /* right: 0; */
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 900;
  background: #444;
  border-bottom-left-radius: 1rem;
  border-left: 3px solid #eee;
  border-right: 3px solid #eee;
  border-bottom: 3px solid #eee;
}

.hamburger-item a {
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.hamburger-item a:hover {
  background: transparent;
}

.content {
  display:flex;
  justify-content: center;
  height: 100%;
  position: relative;
}

.content-inner {
  width: 100%;
  position: relative;
}




.hoverDesktop, .hoverMobile {

  top: 50%;
  left: 50%;
  background-color: black;
  border-radius: 5px;
  border-style: solid;
  border-color: grey;
  padding: 5px;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.36);
  z-index: 1000;
}

.hoverDesktop {
  position: fixed;
  border-width: thin;
  width: 25rem;
  height: 2rem;
}

.mobileBox {
  position: absolute;
  background: #333;
  border-width: 10px;
  border-style: solid;
  border-color: #333;
  border-radius : 0.5rem;
  width: 100%;
  height: 3rem;
  bottom: 0;
  cursor: pointer;
}

.mobileBoxText, .mobileBoxCountdown {
  text-align: center;
  font-size: 0.75rem;
  white-space: nowrap;
}


.regular-image {
  max-width: 100%;
}


.hidden {
  visibility: hidden;
  opacity: 0;
}

.fade {
  transition: opacity 0.3s;
}

.fadeTransform {
  transition: transform 2s;
  -moz-transition: transform 2s; /* Firefox 4 */
  -webkit-transition: transform 2s; /* Safari and Chrome */
  -o-transition: transform 2s; /* Opera */
}

@media all and (max-width: 1365px) and (orientation: landscape) {
  .header {
    flex-direction: row;
  }
  .banner-wrapper img {
    width: 35vw;
  }
  .nav-menu {
    justify-content: space-around;
    font-size: clamp(0.6rem, 0.15949rem + 0.868vw, 0.9rem);
  }
  .menu-item-homepage {
    padding-left: 0;
    margin-left: inherit;
  }
  .menu-item-ticker  {
    order: 1;
    flex-basis: 0;
  }
}

@media all and (max-width: 1365px) and (orientation: portrait) {
  .banner-wrapper img {
    width: 80vw;
  }
  .mobileBox {
    bottom: 4rem;
  }
}

@media all and (max-width: 1200px) and (orientation: portrait) {
  .banner-wrapper img {
    width: 85vw;
  }
}

@media all and (max-width: 1000px) and (orientation: portrait) {
  .banner-wrapper img {
    width: 90vw;
  }
}

@media all and (max-width: 800px) and (orientation: portrait) {
  .banner-wrapper img {
    width: 95vw;
  }
}

@media all and (max-width: 600px) and (orientation: portrait) {
  .banner-wrapper img {
    width: 100vw;
  }
}


@media all and (min-width: 1366px) and (min-height: 615px) {

}

@media all and (max-width: 1365px) {
  .content-inner {
    height: 100%;
  }
  .image-wrapper {
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
  }
}

@media all and (max-height: 615px) {
  .content-inner {
    height: 100%;
  }
  .image-wrapper {
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
  }
}
