@font-face {
  font-family: "OpenSans";
  src: url("/static/core/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/static/core/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("/static/core/OpenSans-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

body {
  background-image: url("/static/core/background.gif");
  font-family: "OpenSans";
}

#container {
  margin: 0 auto;
  max-width: 1000px;
}

header {
  margin: 0 auto;
  text-align: center;
  max-width: 75%;
}

header .logo {
  max-width: 100%;
  height: auto;
}

header ul {
  list-style: none;
}

header ul li {
  display: inline;
}

main {
  color: #1a1a1a;
  background-color: #fff9f0;
  border-style: dashed;
  border-width: 5px;
  border-color: #ff6b9d;
  border-radius: 5px;
  padding: 1rem;
}

main a {
  color: #0000ee;
}

main .photo {
  text-align: center;
}

main .photo img {
  max-width: 90%;
  height: auto;
  border-radius: 5px;
}

footer {
  text-align: center;
  margin-top: 3rem;
  color: #ff6b9d;
  font-weight: bold;
}

h1 {
  color: #ff1493;
}

.date {
  color: #ff8c00;
}

.gallery img {
  border-radius: 5px;
}

.gallery img:hover {
  border-style: outset;
  border-width: 5px;
  border-color: #ff8c00;
}

/* mobile first? how about mobile last! */
@media (max-width: 768px) {
  header {
    max-width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  header .logo {
    max-width: 80%;
  }

  header nav {
    width: 100%;
  }

  header ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  header ul li {
    margin: 0;
  }

  header ul li img {
    max-height: 50px;
    width: auto;
  }
}
