@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  background-color: var(--primary-color);
}

:root {
  --primary-color: #141414;
  --background-color: #1a1a1a;
  --button-color: #d0ff71;
  --text-secondary: #999999;
  --background-secondary: #262626;
}

section {
  background-color: var(--primary-color);
  padding-top: 80px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  background: linear-gradient(
    95.93deg,
    #262626 -26.82%,
    rgba(38, 38, 38, 0) 40.46%
  );
  border-bottom: 1px solid #262626;
}

.container-header {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.header-text {
  padding-left: 80px;
}

.header-text h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 150%;
  color: white;
  margin: 0;
  padding-bottom: 10px;
}

.header-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  section {
    padding: 0px;
  }
  .container-header {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .header-text {
    padding: 0px 16px;
  }

  .header-text h1 {
    font-size: 28px;
  }

  .header-text p {
    font-size: 14px;
  }
}
