
* {
  margin: 0;
  color: #F0C050;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
}

section {
  min-height: 100vh;
  background-color: #024b6c;
}

header {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #012a40;
}

header h2 {
  font-family: 'Andada Pro', serif;
  text-align: center;
}

header img {
  max-width: 300px;
}

nav {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #1a3f53;
}

nav a {
  padding: 10px;
  display: block;
  text-align: center;
}

nav a:hover, a.activelink {
  background-color: steelblue;
  color: white;
}

main {
  max-width: 800px;
  padding: 50px 20px;
  margin: 0 auto;
  line-height: 1.5;
  font-size: 18px;
}

main p {
  margin: 20px 0;
  text-align: justify;
}

main iframe {
  width: 100%;
  height: 500px;
  border: none;
}

div.wrapper1 {
  display: flex;
  align-items: center;
}

div.wrapper2 {
  display: flex;
  flex-wrap: wrap;
}

div.box1 {
  width: 50%;
}

div.box2 {
  flex: 1 1 0;
  white-space: nowrap;
}

div.tagline {
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-size: min(60px, calc(9vw - 14px));
  font-weight: bold;
  letter-spacing: 5px;
}

img.image {
  width: 100%;
  aspect-ratio: 4 / 3;
}

p.information {
  margin-bottom: 50px;
  text-align: left;
  font-family: 'Andada Pro', serif;
}

footer {
  padding: 50px 20px 100px 20px;
  background-color: #eaeff5;
}

footer p {
  color: black;
  font-family: 'Arial', sans-serif;
  text-align: center;
}
