body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  flex-direction: column; /* Stack children vertically */
}

.background-container {
  height: 50vh; /* Set height to 50% of the viewport height */
  background-image: url('RoostLogo.PNG');
  background-repeat: no-repeat;
  background-position: center top; /* Position the image at the top center within this container */
  background-size: contain; /* Resize the image to fit while maintaining aspect ratio */
}

.content-container {
  flex-grow: 0; /* Allow this container to take up the remaining space */
  display: flex;
  justify-content: center; /* Center the box horizontally */
  align-items: flex-end; /* Align the box to the bottom */
  text-align: center;
  /*max-width: 90%;
  width: 500px;*/
  padding-bottom: 60px; /* Space from bottom */
}

.bottom-box {
  width: 50%; /* Or your desired box width */
  margin: 0 auto; /* Center the box horizontally within the content-container */
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  max-width: 90%;
  /* Add other desired styles for your box */
}

.icon {
  width: 40px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.button {
  padding: 15px 30px;
  font-size: 1rem;
  background-color: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #cc7a00;
}
