body {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #fff3d4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.app-header {
  margin: 0;
  height: 160px;  /* Set in order to already have it be the right size before its content is loaded */
  background-color: #b6e0f8;
  width: 100%;
}

.site-title {
  padding: 0.3em;
  font-size: 3em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  list-style-type: none;
}

.navbar li {
  margin: 0;
  padding: 0;
}

.navbar li a {
  display: block;
  padding: 0.7em 1em;
  border-radius: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6ba6e0;
  color: black;
  text-decoration: none;
}

.navbar li a:hover {
  background-color: #2969a8;
  color: white;
}

.app-main {
  margin-bottom: 1.5em;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.app-footer {
  width: 100%;
  margin: 0;
  margin-top: 2em;
  display: none;  /* Changed to flex when loaded */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  box-shadow: 0 50vh 0 50vh black;
}

.app-footer hr {
  width: 50%;
}

.footer-links-container {
  margin: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-title {
  margin: 0.5em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}