@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;300;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-size: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #ffffff;
  background: #242424;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-style: normal;
  overflow: hidden;
}

.header {
  padding: 4em;
  z-index: 10;
}

.header h1 {
  top: 0;
  width: 60%;
  font-weight: 500;
  background: #ffffff;
  background-clip: text;
  letter-spacing: -0.02em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 1080px;
  padding-bottom: 40px;
}
.header .button {
  margin-top: 20px;
}

.header h2 img {
  max-width: 250px;
  margin-bottom: 40px;
}

a {
  text-decoration: none;
  padding-bottom: 4px;
  transition: 0.4s;
  color: #ffffff;
}

a:hover {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.glassy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(206, 10, 10, 0.01);
  backdrop-filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

canvas {
  z-index: 0;
}

.container {
  position: absolute;
  width: 100%;
  z-index: 10000;
  height: 100vh;
}

.footer {
  font-weight: 300;
  padding: 4em;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  z-index: 10;
  align-items: end;
  width: 100%;
}

.footer .legal {
  width: 20%;
  font-size: 0.85rem;
  font-weight: 400;
}

.footer .indegenious {
  padding-left: 20px;
  max-width: 33.33%;
  line-height: 1.15;
  font-weight: 400;
  border-left: 1px solid rgb(255, 255, 255);
  font-size: 0.85rem;
}

@media (max-width: 900px) {

  .header h1 {
    top: 0;
    width: 80%;
    font-weight: 500;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.15rem;
    letter-spacing: -0.05em;
    line-height: 1.4;
    max-width: 1080px;
    padding-bottom: 40px;
  }

  .footer .indegenious {
    padding-left: 20px;
    max-width: 50%;
    line-height: 1.15;
    font-weight: 300;
    border-left: 1px solid rgb(255, 255, 255);
  }

}

@media (max-width: 600px) {

  .footer .indegenious {
    display: none;
  }

  .footer .legal {
    width: 50%;
  }

  .header h1 {
    width: 100%;
  }

  .header h2 img {
    max-width: 150px;
    margin-bottom: 40px;
  }

}