* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--index: calc(1vw + 1vh);
	--text: #e7e7e0;
	--transition: transform .75s cubic-bezier(.075, .5, 0, 1);
}
@font-face {
    font-family: BebasNeue;
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/BebasNeue.otf);
}
@font-face {
	font-family: raleway_f;
	src: url(../fonts/raleway-regular.woff2);
}
@font-face {
	font-family: raleway_f;
	src: url(../fonts/raleway-black.woff2);
	font-weight: 900;
}
body {
	background-color: #010101;
	/*font-family: raleway_f, sans-serif;*/
	font-family: BebasNeue, serif;
	line-height: 1.55;
}
body::-webkit-scrollbar {
    width: 12px;               /* ширина scrollbar */
  }
  body::-webkit-scrollbar-track {
    background: rgb(64, 42, 73);         /*цвет дорожки */
  }
  body::-webkit-scrollbar-thumb {
    background-color: rgb(120, 59, 211);    /* цвет плашки */
    border-radius: 20px;       /* закругления плашки */
    border: 3px solid rgb(120, 59, 211);  /* padding вокруг плашки */
  }
.main-header {
	position: relative;
}
.main-header::after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	height: calc(var(--index) * 10);
	background-image: url(../img/ground.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	bottom: calc(var(--index) * -4.5);
}
.layers {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.layer {
	height: 100%;
	width: 100%;
	position: absolute;
	background-size: cover;
	background-position: center;
	will-change: transform;
	z-index: 2;
	transition: var(--transition);
}
.layers__base {
	/*transform: translate3d(0, calc(var(--scrollTop) / 1.6), 0);*/
	z-index: -1;
	
}
.layers__middle {
	transform: translate3d(0, calc(var(--scrollTop) / 2.5), 0);
}
.layers__front {
	transform: translate3d(0, calc(var(--scrollTop) / 5.7), 0);
}
.layer__header {
	z-index: 1;
	transform: translate3d(0, calc(var(--scrollTop) / 2), 0);
	transition: var(--transition);
	will-change: transform;
	text-transform: uppercase;
	/*font-weight: 900;*/
	color: var(--text);
	/*text-shadow: 0 0 15px #9d822b;*/
}
.layers__title {
	font-size: calc(var(--index) * 2.65);
	letter-spacing: calc(var(--index) / 2.25);
}

.layers__caption {
    font-size: calc(var(--index) / 1.475);
	letter-spacing: calc(var(--index) / 3.5);
	margin-top: calc(var(--index) * -.75);
    /*update*/
    position: relative;
    bottom: 42px;
    left: 1%;
}
.main-article {
	--main-article-transform: translate3d(0, calc(var(--scrollTop) / -7.5), 0);
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	color: var(--text);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	/* Update: */
	top: -1px;
	z-index: 10;
}
.main-article__header {
	text-transform: uppercase;
	font-size: calc(var(--index) * 1.8);
	letter-spacing: calc(var(--index) / 7.5);
	transform: var(--main-article-transform);
	transition: var(--transition);
	will-change: transform;
}
.main-article__paragraph {
	max-width: calc(var(--index) * 30);
	font-size: calc(var(--index) * .9);
	margin-top: calc(var(--index) / 1.25);
	transform: var(--main-article-transform);
	transition: var(--transition);
	will-change: transform;

    position: relative;
    top: 110px;
    right: -3px;
}
.content {
	will-change: transform;
}
.copy {
	position: absolute;
	bottom: calc(var(--index) * 2.5);
	opacity: .45;
	font-size: calc(var(--index) * .75);
	letter-spacing: calc(var(--index) / 37.5);


    transform: var(--main-article-transform);
	transition: var(--transition)
}
a {
	text-decoration: none !important;
	color: var(--text);
  }
.intro {
    max-height: 100vh;
    overflow: hidden;
}
.intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}
.intro__title {
    margin: 0;
    font-size: 58px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    -webkit-animation: rainbow 5s infinite;
    -ms-animation: rainbow 5s infinite;
    -o-animation: rainbow 5s infinite;
    animation: rainbow 5s infinite;
    cursor: pointer;
}
     
    @-webkit-keyframes rainbow {
    0% {
    color: #ff0000;
    }
    10% {
    color: #ff8000;
    }
    20% {
    color: #ffff00;
    }
    30% {
    color: #80ff00;
    }
    40% {
    color: #00ff00;
    }
    50% {
    color: #00ff80;
    }
    60% {
    color: #00ffff;
    }
    70% {
    color: #0080ff;
    }
    80% {
    color: #0000ff;
    }
    90% {
    color: #8000ff;
    }
    100% {
    color: #ff0080;
    }
    }
     
    @-ms-keyframes rainbow {
    0% {
    color: #ff0000;
    }
    10% {
    color: #ff8000;
    }
    20% {
    color: #ffff00;
    }
    30% {
    color: #80ff00;
    }
    40% {
    color: #00ff00;
    }
    50% {
    color: #00ff80;
    }
    60% {
    color: #00ffff;
    }
    70% {
    color: #0080ff;
    }
    80% {
    color: #0000ff;
    }
    90% {
    color: #8000ff;
    }
    100% {
    color: #ff0080;
    }
    }
     
    @-o-keyframes rainbow {
    0% {
    color: #ff0000;
    }
    10% {
    color: #ff8000;
    }
    20% {
    color: #ffff00;
    }
    30% {
    color: #80ff00;
    }
    40% {
    color: #00ff00;
    }
    50% {
    color: #00ff80;
    }
    60% {
    color: #00ffff;
    }
    70% {
    color: #0080ff;
    }
    80% {
    color: #0000ff;
    }
    90% {
    color: #8000ff;
    }
    100% {
    color: #ff0080;
    }
    }
     
    @keyframes rainbow {
    0% {
    color: #ff0000;
    }
    10% {
    color: #ff8000;
    }
    20% {
    color: #ffff00;
    }
    30% {
    color: #80ff00;
    }
    40% {
    color: #00ff00;
    }
    50% {
    color: #00ff80;
    }
    60% {
    color: #00ffff;
    }
    70% {
    color: #0080ff;
    }
    80% {
    color: #0000ff;
    }
    90% {
    color: #8000ff;
    }
    100% {
    color: #ff0080;
    }
    
}
.container {
     max-width: 1200px;
     margin: 0 auto;
     margin-top: 1em;
     
    margin-bottom: 1em;
    text-align: center;
}
.video {
   /* Telling our absolute positioned video to 
  be relative to this element */
  position: relative;

  width: 100%;
  height: 100%;

  /* Will not allow the video to overflow the 
  container */
  

  /* Centering the container's content vertically 
  and horizontally */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#videoBG {
    object-fit: cover;
    height: 100%;
    width: 100%;
  
    position: absolute;
    top: 0;
    left: 0;
    /*position: fixed;
    /*z-index: -1;*/
}
.list {
    margin-top: 1em;
    margin-bottom: 1em;
}
ul {
    margin: 0;
    padding: 0;
}
 ul a {
    text-decoration: none;
    color:#fff;
    font-size: 46px;
}
ul li {
    /*new*/
    list-style: none;
    white-space: pre;
}
.forme{
    text-align: center;
    /*font-size: 46px;*/
    width:100%;
    bottom:0px;
}
.forme a{
    text-decoration: none;
    font-size:32px;
    color: #2dec93;
   }
.landing__sign-in-button{
    text-align: center;
}
.button{
	cursor:pointer;
	padding:13px 20px;
	text-decoration:none;
	color:#fff;
	font-size:16px;
	
	background-color:#006ad6;
	-moz-border-radius:320px;
	-webkit-border-radius:320px;
	border-radius:320px;
	border:0px solid #20559A;
}
.button:hover, .button:focus{
	background-image:-webkit-linear-gradient(#6441a5, #006ad6);
	background-image:-moz-linear-gradient(0% 100% 90deg,#006ad6, #6441a5);
	background-image:-o-linear-gradient(rgb(100,65,165),rgb(0,106,214));
}
.spotify-button{
	cursor:pointer;
	padding:13px 20px;
	text-decoration:none;
	color:#fff;
	font-size:16px;
    background-color:#1ed760;
	-moz-border-radius:320px;
	-webkit-border-radius:320px;
	border-radius:320px;
	border:0px solid #1ed760; 
        position: fixed;
        bottom: 0px;
        right: 0;
        margin-right:12px; 
        margin-bottom:12px;
}
.rd-button{
	cursor:pointer;
	padding:13px 20px;
	text-decoration:none;
	color:#fff;
	font-size:16px;
    background-color:#0161ef;
	-moz-border-radius:320px;
	-webkit-border-radius:320px;
	border-radius:320px;
	border:0px solid #0161ef; 
        position: fixed;
        bottom: 0px;
        right: 0;
        margin-right:150px; 
        margin-bottom:12px;
}
.qbit-button{
	cursor:pointer;
	padding:13px 20px;
	text-decoration:none;
	color:#fff;
	font-size:16px;
    background-color:#2f67ba;
	-moz-border-radius:320px;
	-webkit-border-radius:320px;
	border-radius:320px;
	border:0px solid #2f67ba;
        position: fixed;
        bottom: 0px;
        left: 0;
        margin-left:12px; 
        margin-bottom:12px;
    
}
.krd-button{
	cursor:pointer;
	padding:13px 20px;
	text-decoration:none;
	color:#ffffff;
	font-size:16px;
    background-color:#008672;
	-moz-border-radius:320px;
	-webkit-border-radius:320px;
	border-radius:320px;
	border:0px solid #16e031;
        position: fixed;
        bottom: 0px;
        left: 0;
        margin-left:170px; 
        margin-bottom:12px;
}
.java-button{
        margin-bottom: 0.2rem;
        margin-top: 0.2rem;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    
        color: #fff !important;
        background: #198754;
        font-size: 18px;
        
        font-family: BebasNeue, serif;
        
        padding:10px 32px 10px 32px;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        border: 0;
        text-align: center;
}
.launcher-button{
	cursor:pointer;
	padding:13px 20px;
	text-decoration:none;
	color:#fff;
    font-family: BebasNeue;
	font-size:24px;
	background-color:#6835b6;
	-moz-border-radius:320px;
	-webkit-border-radius:320px;
	border-radius:4px;
	border:0px solid #7702a2;
}
#code{
    text-align: center;
    /*color: rgb(120, 59, 211);
    font-size: 46px;*/
    position:relative;
    bottom:0px;
}
#code a{
 padding: 12pt 12pt;
 text-decoration: none;
 font-size:45px;
 color: #0078d4;
}
@media screen and (max-width: 1280px) {
.spotify-button{
    display: none;
}
.qbit-button{
    display: none;
}
.krd-button{
    display: none;
}
.rd-button{
    display: none;
}
.main-article__paragraph {
    position: relative;
    top: 36px;
    right: 0px;
}
.layers__caption {
    font-size: calc(var(--index) * 2.175);
}

#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
}

.cookie_accept{
    width:20%;
}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}

@media (min-width: 400px) {
    .jsx-3081592046  {
      display: block;
    }
}
}