/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #171717;
  color: #fff;
  background-image: url("./textura-bg.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
  background-size: 115px;
}

/* Container */
.container {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 74px;
}

.logo {
  width: 202.025px;
  height: 56px;
}

/* Main content */
.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.greeting-badge {
  padding: 8px 16px;
  border-radius: 100px;
  color: #fefefe;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 80px;
}

.main-title {
  color: #fefefe;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  line-height: 70px;
  margin-bottom: 40px;
  padding: 0 40px;
}

.highlight {
  color: #ff3d00;
}

.description {
  color: #e1e1e1;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 44px;
  letter-spacing: -0.75px;
  padding: 0 54px;
}

.feature-image {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

/* Footer */
.footer {
  width: 100%;
  padding: 56px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42.778px;
  border-radius: 48px 48px 0 0;
  background-color: #252525; /* bottom: 0; */
  margin-top: -160px;
  z-index: 1;
  background-image: url("./textura-bg-footer.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  background-size: 115px;
}

.thanks-badge {
  padding: 5.833px 15.556px;
  border-radius: 48.611px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #6d6c6c 0%, #fee 51.92%, #6d6c6c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  height: 1px;
  width: 100%;
  background-color: #29323a;
}

.footer-logo {
  width: 206px;
  height: 57.102px;
}

.copyright {
  color: #c9c9c9;
  font-size: 16px;
  font-weight: 500;
}
/* Media queries */
@media (max-width: 991px) {
  .container {
    max-width: 991px;
    width: 100%;
  }

  .footer {
    padding: 40px 20px;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 640px;
  }

  .main-title {
    font-size: 36px;
    line-height: 50px;
  }

  .description {
    font-size: 18px;
    line-height: 30px;
  }

  .footer {
    padding: 20px;
  }

  .footer-title {
    font-size: 24px;
    line-height: 36px;
  }
}
