:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color: #eeeeee;
  background-color: #7952cae6;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

.bouncing-blob {
  width: 32vw;
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform-origin: left top;
}

.bouncing-blob--blue {
  background: #4783c7;
}

.bouncing-blob--white {
  background: #ffffff;
  z-index: 2;
  width: 15vw;
}

.bouncing-blob--purple {
  background: #8c8ff1;
}

.bouncing-blob--pink {
  background: #e289cd50;
}

.bouncing-blobs-container {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bouncing-blobs-glass {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(140px);
  -webkit-backdrop-filter: blur(140px);
  pointer-events: none;
}

.bouncing-blobs {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero h2 {
  font-size: 60px;
  /* max-width: 800px; */
  line-height: 1.2;
  padding: 0 15px;
  text-align: center;
  font-weight: bold;
  /* text-transform: capitalize; */
  margin-bottom: 20px;
  color: #f9f9f9;
  margin-bottom: 65px;
}

.hero p {
  font-size: 24px;
  /* max-width: 500px; */
  line-height: 150%;
  text-align: center;
  /* color: #021123; */
  /* background: #f5f5f5; */
}
.wrap-text-content {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f5f5f530;
  padding: 35px;
  border-radius: 35px;
  margin-bottom: 50px;
  backdrop-filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
}
.wrap-text-content p {
  margin-bottom: 0;
  margin-top: 0;
}
.wrap-text-content a {
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 800;
  color: #6010ff;
}
.wrap-text-content a:hover {
  transition: all 0.3s ease;
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .bouncing-blobs-glass {
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(120px);
  }
}

@media (max-width: 500px) {
  .bouncing-blob {
    width: 60vw;
  }
  .bouncing-blob--white {
    width: 30vw;
  }
  .bouncing-blobs-glass {
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(90px);
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 20px;
  }
}
.logo img {
  width: 200px;
  padding: 45px 25px 0 25px;
}

.tutorial-link svg {
  width: 30px;
}

@media (max-width: 500px) {
  .tutorial-link a {
    font-size: 14px;
    padding: 2px 4px;
  }
  .tutorial-link svg {
    width: 15px;
  }
}
