:root {
  --baackground-color: black;
  --main-color: white;
}
.body {
  color: var(--main-color);
  background-color: var(--baackground-color);
  font-family: "Inter", "Montserrat", sans-serif;
  overflow-x: hidden;
}
.center {
  /* width: 1400px; */
  margin: 0 auto;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section__title {
  margin-bottom: 100px;
  padding-top: 50px;
  text-align: center;
  font-size: 50px;
  color: var(--main-color);
  font-weight: 400;
}
@media screen and (max-width: 1080px) {
  .section__title {
    margin-bottom: 80px;
    padding-top: 40px;
    font-size: 30px;
  }
}
@media screen and (max-width: 780px) {
  .section__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .section__title {
    font-size: 20px;
  }
}


