body {
  padding: 50px;
  font-family: 'Bruno Ace SC', cursive;
  font-size: 18px;
  color: #FFA500; /* Bright Orange */
  background-color: #333333; /* Darker background for contrast */
}

a {
  color: #00B7FF;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* Adjust as needed */
}

.logo {
  max-width: 20%;
  height: auto; /* Adjust as needed */
  margin-right: 20px; /* Space between logo and h1 */
}

.underConstruction img {
  max-width: 25%;
  height: auto;
}

.underConstruction {
  /*border: 1px solid blueviolet;*/
  text-align: center;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
    font-size: 16px;
  }

  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    margin-right: 0;
    margin-bottom: 10px;
    height: 150px; /* Adjust for smaller screens */
  }
}


