/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-screen flex container with fixed background */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('your-image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps the background from scrolling */
}

/* Centers the main text vertically and horizontally */
.content-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Right-aligns the footer text */
.footer-area {
  text-align: right;
  padding: 20px;
  width: 100%;
}
.sky-banner {
  /* Set the sky background image */
  background-image: url('sky-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Full height and centering */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* White font color */
  color: black;
  
  
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
