@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");

:root {
  --primary-color: #10ac84;
  --secondary-color: #e8e8e9;
}

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(33, 39, 47, 1) 100%
  );
}

main {
  max-width: 1100px;
  margin: 4rem auto;
  margin-top: 120px;
}

section {
  max-width: 1100px;
  margin: 0 auto;
}

.section-seperator {
  display: block;
  height: 2px;
  background: rgb(33, 39, 47);
  background: linear-gradient(
    90deg,
    rgba(33, 39, 47, 1) 0%,
    rgba(0, 0, 1, 1) 100%
  );
}

.description {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 4rem auto;
  align-items: center;
}

@media (max-width: 1400px) {
  section {
    padding: 1rem;
  }
}

@media (max-width: 992px) {
  .section-description {
    padding: 0 1rem 0 1rem;
    font-size: 1.2rem;
    text-align: center;
  }
}

@media (max-width: 758px) {
  .section-description {
    padding: 0 1rem 0 1rem;
    font-size: 1.2rem;
    text-align: center;
  }
}
