* {
  font-family: "Lato", sans-serif;
  max-width: 100vw;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: white;
}

header {
  /* background: url("../assets/header-bg.svg") no-repeat; */
  /* background-size: cover; */
  background-color: #064464;
  padding: 30px 30px 30px 0;
}

header h1 {
  display: inline;
  position: relative;
}

header a {
  color: inherit;
  text-decoration: none;
}

nav {
  float: right;
}

nav a {
  line-height: 40px;
  text-decoration: none;
  color: white;
  padding: 15px;
  font-size: 20px;
}

nav a:not(.currentPage):hover {
  color: #dddddd;
}

.currentPage {
  font-weight: bold;
}

.content {
  width: 80%;
  margin: 0 auto;
}

.light {
  background-color: #fff;
  color: #4d4d4d;
}

.dark {
  background-color: #064464;
  color: white;
}

main {
  padding-top: 75px;
}

.clear:after {
  clear: both;
  display: table;
  content: "";
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.center {
  text-align: center;
}

footer {
  padding: 20px;
  color: white;
  background-color: #064464;
  text-align: center;
  font-size: 15px;
}

footer h1 {
  float: left;
  display: inline;
}

footer .links {
  float: right;
  line-height: 70px;
}

footer .links a {
  font-size: 20px;
  color: white;
  padding: 10px;
  text-decoration: none;
}

footer .links a:not(.currentPage):hover {
  color: #dddddd;
}


@media screen and (max-width: 1350px) {
  footer h1 {
    text-align: center;
    float: unset;
    display: block;
  }

  footer .links {
    float: unset;
  }
}


@media screen and (max-width: 900px) {
  main {
    padding-top: 20px;
  }

  header h1 {
    display: block;
  }

  nav {
    float: unset;
  }

  nav a {
    padding: 15px 15px 15px 0;
  }

  footer h1 {
    display: block;
    float: unset;
  }

  footer .links,
  footer .links a {
    float: unset;
    text-align: center;
    font-size: 18px;
  }
}

@media screen and (max-width: 630px) {
  nav a {
    display: block;
    line-height: unset;
    padding: 5px 5px 5px 0;
  }

  footer .links a {
    display: block;
    line-height: unset;
    padding: 0;
  }
}
