/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  background-color: #000;       /* black background */
  color: #fff;                  /* white text */
  font-family: Arial, Helvetica, sans-serif;
	font-weight: 300; /* lighter than normal */
  line-height: 1.6;
  text-align: center;           /* centered layout */
  padding: 2rem;
}

header {
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("images/Header.png");
  background-size: cover;
  background-position: center;
  flex-direction: column;
  text-align: center;
}

header .logo {
  max-width: 80%;   /* scales logo relative to header width */
  max-height: 80%;  /* scales logo relative to header height */
}

/* Headings */
h1 {
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 100; /* lighter than normal */
  color: #aaaaaa
}

h2 {
  font-size: clamp(1rem, 4vw, 3rem);
  font-weight: 300; /* lighter than normal */
  margin: 2rem 0 1rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  color: #808080
}

/* Paragraphs */
header p {
  font-size: clamp(1rem, 3vw, 2rem);
}

/* Show list */
ul {
  list-style: none;
  margin-top: 1rem;
}

ul li {
  margin: 0.75rem 0;
  font-size: 1rem;
}

ul li strong {
  color: #ffcc00; /* highlight dates in gold */
}

/* Links */
a {
  color: #ffcc00; /* gold links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 3rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

footer img {
  transition: transform 0.2s ease;
}

footer img:hover {
  transform: scale(1.2);
}