@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap');

/* html {
  height: 100%;
} */
body {
  background-color: #181c20;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  color: #7b858e;
  font-weight: 300;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.45px;
}

.wrapper {
  width: 1200px;
  height: fit-content;

  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;

  margin: auto;
}

h1 {
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  letter-spacing: 0.02em;
  font-size: 2.5em;
  font-weight: 700;
}

p {
  line-height: 1.5em;
}

._ea {
  color: #BDC2C7;
}

@media only screen and (max-width: 1300px) {
  body {
    font-size: 22px;
  }
  .wrapper {
    width: 900px;
  }
}

@media only screen and (max-width: 1000px) {
  body {
    font-size: 18px;
  }
  .wrapper {
    width: 640px;
  }
}

@media only screen and (max-width: 740px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75em;
  }
  .wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
}