* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Neue-Regular-400.woff2") format(".woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Neue-Bold-700.woff2") format(".woff2");
  font-weight: 700;
}

body {
  position: relative;
  overflow-x: hidden;
}

main {
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1140px;
  padding: 96px 0;
  margin: 0 auto;
  z-index: 100;
  position: relative;
}

.title-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.title {
  color: #3ecf6e;
  text-align: center;
  font-family: "Helvetica";
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.subtitle {
  color: #fff;
  text-align: center;
  font-family: "Helvetica";
  font-size: 24px;
  font-weight: 700;
}

.text {
  color: #fff;
  text-align: center;
  font-family: "Helvetica";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo {
  max-width: 250px;
  margin-bottom: 40px;
}

.logo img {
  width: 100%;
}

.btn-wrapper {
  max-width: 440px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  margin: 0 auto;
}

.btn-wrapper span {
  color: #434544;
  display: block;
  text-align: center;
  font-family: "Helvetica";
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-wrapper a {
  display: block;
  border-radius: 20px;
  padding: 8px 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 250px;
  text-decoration: none;
  color: #434544;
  font-family: "Helvetica";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background-color: #3ecf6e;
  transition: background-color 0.4s ease;
}

.btn-wrapper a:hover {
  background-color: #99ffbb;
}

@media (max-width: 1140px) {
  .container {
    padding: 96px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 40px;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 30px 20px;
  }

  .title-wrapper {
    margin-bottom: 20px;
  }

  .logo {
    margin-bottom: 20px;
    max-width: 170px;
  }

  .subtitle {
    font-size: 20px;
  }

  .title {
    font-size: 24px;
  }

  .text {
    font-size: 16px;
  }
}
.main {
  position: relative;
}
canvas {
  background: #040c2c;
  position: fixed;
  width: 100vw;
  min-height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 2;
}
