* {
  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;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #101522;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: #040919;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}
#footer .footer-top .footer-info img {
  height: 80px;
  margin-bottom: 10px;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}
#footer .footer-top .social-links a:hover {
  background: #f48822;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #f48822;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #f48822;
  font-size: 18px;
}
#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
  color: #f48822;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}
#footer .footer-top .footer-newsletter input[type=submit] {
  background: #f48822;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #e0072f;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}