html {
  color-scheme: light dark;
}

body {
  margin: 0;
  padding: 0;
  font-family: Tahoma, Verdana, Arial, sans-serif;

  /* Background image */
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 60vh;
  overflow: hidden;

  /* Text color */
  color: white;   /* black text for bright background areas */
  text-align: center;

  /* Dark shadow to improve readability on bright spots */
  text-shadow: 0px 2px 4px rgba(0,0,0,0.8);
}

/* Logo positioning */
.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 10vh;
}

.logo {
  width: 40vw;
  height: auto;
  max-width: 600px;
  min-width: 180px;
}

/* Link styling */
a {
  color: #00ffff;
  text-decoration: underline;
}

a:hover {
  color: #ffcc00;
}
