/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #f27421;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

/* Fullscreen image container - keep whole image visible (no cropping)
   Useful when the image contains important text that must remain readable. */
.fullscreen-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #f27421; /* letterbox color when aspect ratios differ */
}

/* Image behavior: scale to fit viewport while preserving aspect ratio */
.fullscreen-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.logo {
  max-width: 100px;
}

.header{
  background-color: #fccd07;
}


footer {
  background-color: #1F374A;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}

footer p {
  margin: 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container p {
  margin-right: 5px;
}
.footer-container a{
  margin-left: 5px;
  margin-right: 5px;
}

a {
  color: white;
}