* {
  margin: 0;
  padding: 0;
  font-family: Jost;
}
body {
  position: relative;
}
@font-face {
  font-display: swap;
  font-family: Jost;
  font-style: normal;
  font-weight: 400;
  src:
    url(./Jost-VariableFont_wght.ttf) format("woff2"),
    url(./Jost-VariableFont_wght.ttf) format("woff");
}
.mainBg {
  background-image: url("./mainBg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  overflow: clip;
}
.mainBg h1 {
  font-size: 70px;
  color: #b8c6ce;
  text-transform: uppercase;
  font-weight: 100;
}
.mainBg img {
  width: 150px;
}

@media only screen and (max-width: 576px) {
  .mainBg h1 {
    font-size: 30px;
  }
  .mainBg img {
    width: 100px;
  }
}
