/* TEXT */

h1 {
  font-family: "Roboto", "sans-serif";
  font-weight: 100;
  font-size: 3rem;
  font-variant: small-caps;
  color: white;
  margin: 1rem;
}

h2, h3, h4, h5, h6 {
  font-family: "Roboto", "sans-serif";
  font-weight: 400;
  color: navy;
  margin: 1rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4, h5, h6 {
  font-size: 1rem;
}

p, a, li, blockquote, td, th, label, address, span {
  font-family: "Roboto", "sans-serif";
  font-weight: 300;
  font-size: 1rem;
  color: black;
  margin: 1rem;
}

/* BODY */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* MAIN */

main {
  flex: 1;
  margin: 10rem 3rem 3rem 3rem;
}

section {
  margin: 5rem 0;
}

article {
  margin: 3rem 0;
}

.group {
  display: flex;
  justify-content: left;
  align-items: center;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background-color: navy;
}

header div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar */

nav ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  padding-inline-start: 0;
  margin-block: 0;
  height: 100%;
}

nav ul li {
  list-style: none;
  display: inline;
}

nav a {
  font-size: 2rem;
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: deepskyblue;
  transition: 0.5s;
}

/* FOOTER */

footer {
  text-align: center;
  background-color: black;
  padding: 2rem;
}

footer div {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer address {
  display: flex;
  text-align: left;
}

/* Address */

address p {
  font-style: normal;
  color: white;
  margin: 1rem;
}

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