/* 

Color Palette: https://coolors.co/e63946-f1faee-a8dadc-457b9d-1d3557

*/

:root {
  --red: #e63946;
  --off-white: #f9f9f9;
  --blue: #457b9d;
  --dark-blue: #1d3557;
}

body {
  min-height: 100vh;
  background-color: var(--off-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a {
  color: var(--red);
}

a:hover,
a:focus {
  color: var(--blue);
  text-decoration: none;
}

#site-logo {
  max-height: 200px;
}

footer {
  padding: 1em;
  background-color: var(--dark-blue);
}

/* Basic styling for the menu */
header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333;
  overflow: hidden;
}

header ul li {
  float: left;
}

header ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color on hover */
header ul li a:hover {
  background-color: #111;
}

/* Responsive layout - display the menu in vertical for small screens */
@media screen and (max-width: 600px) {
  header ul ul {
    flex-direction: column;
  }
  header ul li {
    float: none;
    width: 100%;
  }
}
