body {
  background-color: black;
  overflow: hidden;
  display: grid;
  place-content: center;
}

header {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
header .main-block {
  grid-column: 2;
  grid-row: 2;
  margin: auto;
  display: grid;
  place-content: center;
}
header .main-block .obj {
  margin: auto;
  width: auto;
  height: 140px;
  margin: auto;
}
header .page-info {
  grid-row: 3;
  grid-column: 2;
  display: grid;
  place-content: center;
}
header .page-info p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: white;
  text-align: center;
}/*# sourceMappingURL=app.css.map */