* {
  margin: 0;
  padding: 0;
  font-family: 'Outfit';
}
canvas {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: -2;
}
body {
  overflow-x: hidden;
}
#canvas {
  position: fixed;
  inset: 0;
  width: 100%;
}
#hero {
  width: 100%;
  min-height: 100vh;
}
#hero .content {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10rem 0;
}
#hero .content h1 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 8rem);
  color: white;
  width: clamp(300px, 70vw, 1500px);
  margin-bottom: 3rem;
  opacity: 0;
  font-weight: 300;
  animation: goUp 1s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}
.btn {
  padding: 1rem;
  border-radius: 0.3rem;
  text-decoration: none;
}
.btn-light {
  background-color: transparent;
  border: 1px solid #ccc;
  color: white;
  font-size: 1rem;
}
.btn-light:hover {
  background-color: white;
  color: #2a4f5f;
}
#hero .buttons {
  animation: goUp 1s cubic-bezier(0, 0.55, 0.45, 1) 0.5s forwards;
  opacity: 0;
}

/* Examples section */
.examples-section {
  margin-top: 5rem;
  color: white;
  opacity: 0;
  text-align: center;
  animation: goUp 1s cubic-bezier(0, 0.55, 0.45, 1) .7s forwards;
}
.examples-section p {
  margin-bottom: 1rem;
}
.examples {
  display: flex;
  gap: 2rem;
}

.examples img {
  height: 150px;
  width: 290px;
}

.example img {
  border-radius: .4rem;
}

.crafted {
  margin-top: 3rem;
  
}
a {
  color: white;
}
@keyframes fullWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes goUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .examples {
    flex-direction: column;
  }
}
