/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}

/* Flexbox layout */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 95vh;
  text-align: center;
}

/* Logo image */
.logo-image {
  width: 22%;
  height: auto;
}

/* Divider line */
.divider {
  width: 60%;
  max-width: 600px;
  height: 1px;
  background-color: white;
  border: none;
  
}

/* Email section wrapper for proper alignment */
/* Email link */
.bottom-text {
  display: block;
  font-size: 18px;
  font-style: italic;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive: tablets */
@media (max-width: 768px) {
  .logo-image {
    width: 50%;
  }

  .bottom-text {
    font-size: 16px;
  }

  .divider {
    width: 75%;
  }
}

/* Responsive: mobile */
@media (max-width: 480px) {
  .logo-image {
    width: 70%;
  }

  .bottom-text {
    font-size: 14px;
  }

  .divider {
    width: 80%;
  }
}
