*
{ 
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
:root {
  --main-txt-size: calc(14px + (28 - 14) * ((100vw - 800px) / (1400 - 800)));
  --main-txt-size-min: 14px;
  --main-txt-size-max: 22px;
  --main-txt-line-height: 1.5em;
  --txt-line-height-small: 1.4vw;
  --win-min-break: 800px;
  --win-max-break: 1400px;
}
html {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: normal;
  font-style: normal;
  font-kerning: auto;
  scroll-behavior: smooth;
}
  html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}

a {
  text-decoration: none;
  color: white
}
a:hover {
  text-decoration: line-through;
  cursor: pointer;
}
body {
  height: 100%;
  height: 100vh;
  line-height: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: black;
}
/*MENU ANFANG*/
.header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: transparent;
  margin-left: 30px;
}
.header2 {
  background-color: transparent;
  margin-left: 30px;
}
/*OPEN CLOSE BUTTON*/
.toggle {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  border-radius: 50%;
  cursor: pointer;
  top: 0;
  right: 0;
  color: white;
  transition: transform 1.25s;
  background-color: transparent;
  border-style: none;
}
.toggle.active {
  transform: rotate(315deg);
  color: white;
}
/*OPEN CLOSE MENU*/
.full-screen-nav {
  position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
  transition: all 0.5s ease-in-out;
	display: none;
}
.open-nav {
	height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*MENU KREIS*/
.menu {   
  position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -400px;
}
.menu li {
  list-style: none;
  position: absolute;
  transform-origin: 225px;
  transition: all 0.5s ease;
  transition-delay: calc(0.1s * var(--i));
  transform: rotate(0deg) translateX(80px);
  opacity: 0;
}
.menu.active li {
  transform: rotate(calc(360deg / 13 * var(--i)));
  opacity: 1;
}
.menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  transform: rotate(calc(360deg / -13 * var(--i)));
  transition: all 0.5s ease;
  color: white;
} 
.menu li a:hover {
  text-decoration: line-through;
}
/*MENU END*/

/*LOADER START*/
@keyframes fadeOut {
  100% {
  opacity: 0;
  visibility: hidden;
  }
}
.loader {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgb(0, 0, 0);
  padding: 0;
  margin: 0;
}
.loader.hidden {
  animation: fadeOut 1.5s;
  animation-fill-mode: forwards;
}
.loader .loader-header {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  top: 48%;
  transform: translateY(-50%);
}
.loader h1 {
  text-align: center;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: normal;
  font-style: normal;
  font-kerning: auto;
}
/*--LOADER START END--*/

/*SOUNDMATCH ANIMATION*/
.wrapper-soundmatch {
  text-align: center;
	margin-left: 0;
  margin-right: 0;
  margin-top: 35vh;
  margin-bottom: 0;
  align-items: center;
  display: flex;
  justify-content: center;
}
h2 {
	font-family: "helvetica", sans-serif;
  font-weight: normal;
	transition: letter-spacing 5s;
	text-align: center;
	animation: stretch 5s infinite alternate;
  color:white;
  margin-top: -100px;
} 
  @keyframes stretch {
	from {
	  letter-spacing: 0;
	}
	to {
	  letter-spacing: 5vw;
	}
}
h2:active{
  color: black;
}
/*BUTTON LOG IN*/
.button {
  font-family: "helvetica", sans-serif;
  font-weight: normal;
  cursor: pointer;
  color: white;
  background-color: transparent;
  padding: 8px 25px;
  border-radius: 20px;
  border: solid 1px white;
  border-style: dotted;
}
.button:hover {
  font-family: "helvetica", sans-serif;
  font-weight: bold;
}
.button:active {
  font-family: "helvetica", sans-serif;
  font-weight: bold;
}
.wrapper-login {
  margin-top: 50px;
  justify-content: center;
  text-align:center;
  position: absolute;
}