/* * {
  border: black 1px solid;
} */

/* BASIC */
body {
  font-family: 'Cormorant Garamond', serif;
  color: black;
  height: 100vh;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 5em;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2em;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25em;
  text-align: center;
}

/* NAV */
nav {
  background-color: #245972;
  opacity: .75;
  /* padding: 1px; */
  position: fixed;
  top: 0;
  width: 100%;
}

nav ul {
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr;
}

nav li {
  display: inline;
  margin-left: 5px;
  margin-right: 5px;
  color: white;
}

nav li:first-of-type {
  margin-left: 3em;
}

a {
  text-decoration: none;
  color: white;
}

/* FOOTER */
footer {
  background-color: #2B303A;
}

footer p {
    color: white;
    padding: 1em;
    text-align: center;
}


/* SMALL SCREEN */
@media screen and (max-width: 500px) {
  nav ul:first-of-type {
    text-align: center;
  }
  nav ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
  }

}
