html {
    min-height: max(1600px, 100%);
    overflow-x: hidden;
}

body {
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background: #FF1000;
    font-family: permanent-marker,sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.sticky {
    position: fixed;
    top: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-family: doublebass, sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
}

iframe {
    display: flex;
    align-self: center;
    width: clamp(0px, 30vw, 1200px);
    height: clamp(0px, 16.875vw, 675px);

}

p {
    position:relative;
    animation: 1s ease-out 0s 1 slideInFromLeft;
    background: #FFFFFF;
    font-size: 2vw; 
    padding: 2vw;
    margin-top: 4vw;
    width: clamp(0px, 70vw, 1200px);
    align-self: center;
    border: 1vw solid;
    border-radius: 3vw;
    top: ;
    z-index: 0;
}

img {
    
}

.title {
    position: fixed;
    top:5vw;
    left:0;
    right:0;
    margin:auto;
    width: clamp(300px, 60%, 950px);
    z-index: 3;
}
.menu {
    position: fixed;
    top:clamp(0px, 12vw, 200px);
    left:0;
    right:0;
    margin: auto;
    white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    background-image: url(screenshots/menuBG.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding-top: 5vw;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.title:hover {
        transform: rotate(3deg);
}

ul {
  list-style-type: none;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-self: center;
}

li {
      margin:0;
}

li a {
    display:flex;
  position: relative;

  color: white;
  font-family: doublebass, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 3vw, 50px);
  text-align: center;
  padding: 0 clamp(10px,1vw,3vw) 0 ;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  transform: rotate(3deg);
  color: #111;

}

.second {
    border-left: 6px solid #00FFFF;
    
}
.second:before {
  content: "";
  position: relative;
  left: min(-13px,-1.2vw);
  top: 2px;
  border-left: 6px solid #000000;

}
.spacer{
    display: block;
    height:clamp(0px,20vw,338px);
}
.contentContainer {
    display: flex;
  flex-direction: row;
  align-self: center;
}
.content {
    position:relative;
    animation: 1s ease-out 0s 1 slideInFromLeft;
    background: #FFFFFF;
    font-size: clamp(0px,3vw,37px); 
    padding: 2vw;
    margin-top: 4vw;
    margin-left: 3vw;
    width: clamp(0px, 50vw, 1200px);
    align-self: flex-start;
    border: 1vw solid;
    border-radius: 3vw;
    top: 0;
    z-index: 0;  
}

#content23 {
    animation: 1s ease-out 0s 1 slideInFromLeftFar;
}

.video {
    position:relative;
    animation: 1s ease-out 0s 1 slideInFromLeft;
    background: #FFFFFF;
    font-size: clamp(0px,3vw,37px); 
    padding: 2vw;
    margin-top: 4vw;
    width: clamp(0px, 30vw, 1200px);
    align-self: center;
    border: 1vw solid;
    border-radius: 3vw;
    top: ;
    z-index: 0;
}

.setlisth0 {
    font-size: 250%
}

.setlisth1 {
    font-size: 200%
}

.setlisth2 {
    font-size: 130%;
}

@media screen and (max-width: 1810px) {
  .Rcontact {
    position: absolute;
	left: -10000px;
    }
  }
@media screen and (min-width: 1810px) {
  .Mcontact {
    position: absolute;
	left: -10000px;
    }
  }
 @keyframes slideInFromLeft {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

 @keyframes slideInFromLeftFar {
  0% {
    transform: translateX(-600%);
  }
  100% {
    transform: translateX(0);
  }
}

 @keyframes slideOutToRight {
  0% {
    transform: translateX(0);
    z-index: -1;
  }
  100% {
    transform: translateX(400%);
  }
}
  @keyframes slideOutToRightFar {
  0% {
    transform: translateX(0);
    z-index: -1;
  }
  100% {
    transform: translateX(700%);
  }
}