@import url('../base.css');

/* Gate page styles */
.home-page {
  background-attachment: fixed; /* ensures the background image stays fixed to the viewport*/
  background-image: url("../../assets/images/desert.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

.sanches-website {
  display: flex;
  align-items: center; /* centering horizontally */
  justify-content: center; /* centering vertically */
  flex-direction: column;
  font-family: 'Ultra', serif;
  height: 50%;
  left: 35%;
  position: absolute;
  text-align: center;
  top: 25%;
  width: 30%;
}

