body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;

}


body {
    background-color: #D7E8F3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

main {
	position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
filter: brightness(0.5);
height: 100vh;
}

canvas {
	height: 100vh !important;
	width: auto !important;
}




@font-face {
    font-family: "test-font";
    src: url("../font/test-font-2.ttf") format("truetype-variations"),
         url("../font/test-font-2.ttf") format("woff");
}



.footer {
  position: fixed;
  bottom: 20px;
}
.infos {
	position: fixed;
	left: 20px;
	top: 20px;
	color: white;
}


.echo-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999999;
}


.headline {
	font-family: "test-font";
	    font-variation-settings: "wdth" 100, "wght" 400, "ital" 0, "CNTR" 0;
	font-size: 20vh;
	transition: 500ms;
	color: white;


}

.circle {
  position: relative;
  z-index: 9999999;
  width: 80vh;
    height: 80vh;
      clip-path: circle(50%);

}

.circle:before {
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  border-radius: 50%;
  border: 5px solid #00b7ff;
  box-sizing: border-box;
  z-index: 0;
  transition: border-color 500ms;
}
.circle:after {
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  border-radius: 50%;
  border: 21px solid rgba(198, 247, 255, 0.6);
  box-sizing: border-box;
  z-index: 0;
  filter: blur(12.5px);
}
.circle:hover {
  cursor: pointer;
}
.circle:hover::before {
  -webkit-animation: main-color 5s ease-in-out alternate infinite;
          animation: main-color 5s ease-in-out alternate infinite;
}
.circle:hover::after {
  -webkit-animation: highlight-color 5s ease-in-out alternate infinite;
          animation: highlight-color 5s ease-in-out alternate infinite;
}
.circle .noise {
  mix-blend-mode: multiply;
  z-index: 1;
  position: relative;
}

.animated {
  -webkit-animation: 20s bgPos ease-in-out infinite alternate;
          animation: 20s bgPos ease-in-out infinite alternate;
}

@-webkit-keyframes bgPos {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 512px 512px;
  }
}

@keyframes bgPos {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 512px 512px;
  }
}
@-webkit-keyframes main-color {
  from {
    border-color: #00b7ff;
  }
  40% {
    border-color: #ffd500;
  }
  to {
    border-color: #c20000;
  }
}
@keyframes main-color {
  from {
    border-color: #00b7ff;
  }
  40% {
    border-color: #ffd500;
  }
  to {
    border-color: #c20000;
  }
}
@-webkit-keyframes highlight-color {
  from {
    border-color: rgba(199, 248, 255, 0.6);
  }
  60% {
    border-color: rgba(227, 199, 255, 0.6);
  }
  to {
    border-color: rgba(255, 232, 20, 0.644);
  }
}
@keyframes highlight-color {
  from {
    border-color: rgba(199, 248, 255, 0.6);
  }
  60% {
    border-color: rgba(227, 199, 255, 0.6);
  }
  to {
    border-color: rgba(255, 232, 20, 0.644);
  }
}w



.footer {
	position: fixed;
	bottom: 20px;
	left: 20px;
}


.home {
    width: -webkit-fill-available;
    display: none;
    flex-direction: column;
    justify-content: center;
    margin: 140px;
    text-align: -webkit-center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    border: solid 40px #e1e1e1;
    position: relative;
    z-index: 1;
    border-radius: 40px;
    white-space: nowrap;
    background: rgb(0,0,0);
background: white;
    height: 60vh;
    width: 100vh;
    	flex-direction: column;
    	padding: 0px;
}

.home-intro {
	display: flex;
	    	flex-direction: row;
	    	align-items: center;
	    	gap: 40px;
}

.headline-home {
	font-family: "test-font";
	    font-variation-settings: "wdth" 100, "wght" 400, "ital" 0, "CNTR" 0;
	transition: 500ms;
	color: orange;
}

.subline-wrapper {
	display: none;
	flex-direction: column;
	color: black;
	align-items: baseline;
}

.subline-home {
	font-family: "test-font";
	    font-variation-settings: "wdth" 100, "wght" 400, "ital" 0, "CNTR" 0;
	    font-size: 4vh;
	    transition: 500ms;
}

.days {
	width: 100%;
}