html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.full-page-bg {
  /* Replace with your background image path */
  background-image: url('images/solaris-main-img2.jpg');
  
  /* Make it cover the entire page */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional: keeps background fixed on scroll */
  
  /* Ensure it fills at least the full viewport height */
  min-height: 100vh;
  width: 100vw;
  
  /* Flexbox to easily center or position your logo */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers vertically (change to flex-start if you want it at top) */
  align-items: center;     /* Centers horizontally */
  position: relative;
}

.logo {
  /* Set appropriate sizing for your logo */
  max-width: 600px;
  width: 100%;
  height: auto;
}
.logo img{ margin: 0 40px;}