body {
/*  background-image: linear-gradient( #0000006c, #0000006c), url(../bg/1646495875316.jpg); */
  background-size: cover;
  background: black;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: system-ui;
  overflow: hidden;
}
img {
  border-radius: 1%;
  max-width: 40%;
  transition-duration: 0.2s;
  box-shadow: 2px 2px 2px 2px black, black;
}
img:hover {
  transform: scale(1.1);
}
header {
  z-index: 99;
  position: sticky;
  top: 0;
  padding: 15px;
  width: 100%;
  height: 25px;
  background: #0000006c;
  border-bottom: white 2px solid;
  backdrop-filter: blur(5px);
}
header > h3 {
  padding: 15px;
  height: 100%;
  margin-top: -15px;
  color: white;
  width: 78%;
}
header > a {
  padding: 15px;
  height: 100%;
  float: left;
  margin-top: -15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition-duration: 0.5s;
}
header > a:hover {
  background: #FF0000AF;
  text-decoration: underline;
  transition-duration: 0.5s;
}
.active {
  background: #FF0000AF;
}
.card {
  opacity: 1;
  padding: 5px;
  width: 90%;
  display: inline-block;
  border-bottom: white 2px solid;
  background: #0000006c;
  backdrop-filter: blur(5px);
}
.main {
  color: white;
  position: fixed;
  text-align: center;
  padding: 5px;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: scroll;
  display: block;
}
.container {
  position: fixed;
  z-index: 1;
  top: -1300px;
  left: 10%;
  transform: rotate(-40deg);
}
.animflip {
  /*margin-left: -1645px;*/
  animation: shift 20s;
  animation-direction: reverse;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  width: 4000px;
  animation-delay: -2s;
  transform: scale(-1, 1);
  translate: -1000px;
}
.anim {
/*  margin-left: -100%; */
  animation: shift 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  width: 100%;
}
@keyframes fade {
  0% {opacity: 0; background: red;}
  25% {opacity: 0.5; background: black}
  50% {opacity: 1; background: red;}
  75% {opacity: 0.5; background: black;}
  100% {opacity: 0; background: red;}
}
@keyframes shift {
  0% {translate: -4000px;}
  50% {translate: 100px;}
  100% {translate: 4000px;}
}
.late-1 {
  animation: fade 2s;
  animation-iteration-count: infinite;
  animation-delay: 0s;  
}
.late-2 {
  animation: fade 2s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
}
.late-3 {
  animation: fade 2s;
  animation-delay: 0.4s;
  animation-iteration-count: infinite;
}
#chevron {
  display: inline-block;
  margin-left: 10px;
  height: 100px;
  width: 40px;
  background: red;
  position: relative;
  border-top: 15px white solid;
  border-right: 15px white solid;
  border-left: 15px white solid;
  transform: skew(40deg);
}
#chevronv {
  display: inline-block;
  margin-left: 10px;
  margin-top: -21px;
  height: 100px;
  width: 40px;
  background: red;
  position: relative;
  border-bottom: 15px white solid;
  border-left: 15px white solid;
  border-right: 15px white solid;
  transform: skew(-40deg);
}
@media only screen and (max-width: 700px) {
  html, body {
    max-height: 80%;
    overflow-x: hidden; 
  }
  header {
    margin-top: -2.5%;
    margin-left: -2.5%;
  }
}
@media only screen and (min-width: 1920px) {
  body {
    font-size: 20px;
  }
  header {
    height: 30px;
  }
  .animflip {
    translate: -1000px;
  }
  #chevronv {
    margin-top: -26px;
  }
  .container {
    scale: 1.1;
  }
}
@media only screen and (min-width: 3840px) {
  body {
    font-size: 25px;
  }
  header {
    height: 40px;
  }
  #chevron {
    height: 250px;
    width: 80px;
  }
  #chevronv {
    height: 250px;
    width: 80px;
    margin-top: -31px;
  }
  .container {
    translate: 1100px;
    top: -2400px;
    width: 7000px;
    scale: 1.2;
  }
  .animflip {
    translate: -1000px;
  }
  .anim {
    translate: 300px;
  }
}
