/* --------------------------------- */
/* BASIC SETUP */
/* --------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2 {
  background-color: #fff;
  color: #555;
  font-family: "lato", "Arial", sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
}

/* ----------------------------- */
/* HEADER */
/* ----------------------------- */

header img {
  max-width: 100%;
  height: auto;
}

h1 {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 120%;
  padding: 1px;
  margin: 0;
  margin-left: 0px;
  position: fixed;
  letter-spacing: 1px;
}
.title h1 {
  margin-top: -60px;
}
.row {
  margin-top: 0px;
}

/* ----------------------------- */
/* NAVIGATION */
/* ----------------------------- */

.nav {
  float: right;
  list-style: none;
  margin-top: 170px;
  margin-right: 70px;
  position: fixed;
  top: 0;
  right: 0;
}

.nav li {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 1px 5px 1px;
  background-color: rgb(133, 198, 198);
  border: 1px solid rgb(190, 214, 216);
  border-radius: 10px;
}

.nav li a:link,
.nav li a:visited {
  padding: 8px 0px;
  color: #fff;
  text-decoration: none;
  font-size: 90%;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

.nav li a:hover,
.nav li a:active {
  border: 1px solid rgb(133, 198, 198);
  border-radius: 10px;
  transition: 0.2s;
}

.nav a:hover {
  background-color: #20c7c7;
}

/* Mobile navi */

.mobile-nav-icon {
  float: right;
  /*    margin-top: 30px;*/
  cursor: pointer;
  display: none;
}

.mobile-nav-icon i {
  font-size: 200%;
  color: #fff;
}

/* ----------------------------- */
/* FOOTER */
/* ----------------------------- */

footer p {
  background-color: rgba(255, 255, 255, 0.74);
  color: #262525;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 80%;
}

/* ----------------------------- */
/* OTHER PAGES */
/* ----------------------------- */

.blue {
  color: #039;
}

.red {
  color: red;
}

.orange {
  color: orange;
}

.green {
  color: green;
}

.black {
  color: black;
}
