@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
  --color1: #ffffff;
  --color2: #000000;
  --color3: #f5f5f5;

  --mainFont: "Lexend", sans-serif;
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  font-family: var(--mainFont);
  font-weight: 300;
}
body {
  --marginBody: 3.125rem;
  width: 100vw;
  height: 80dvh;
  background-color: var(--color3);
}
.main {
  margin: auto;
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__title {
  font-size: 5rem;
  text-align: center;
}
@media (width >= 576px) and (width < 768px) {
  html {
    font-size: 13px;
  }
}
@media (width >= 768px) and (width < 992px) {
  html {
    font-size: 14px;
  }
}

@media (width < 576px) {
  html {
    font-size: 12px;
  }
}
