* {
  padding: 0;
  margin: 0;
}

.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg {
  width: 100%;
  height: 100%;
  background-image: url('bg.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.text {
  font-size: 72px;
  text-align: center;
  padding: 30px 0;
}

@media (max-width: 1100px){
  .bg {
    background-size: cover;
  }
}

@media (max-width: 992px){
  .text {
    font-size: 40px;
  }
}