/* Home page CSS */
/* Font: 
font-family: 'Lato', sans-serif;
font-family: 'Nunito Sans', sans-serif; */

body {
  margin: 0px;
  background-image: url("WebsiteBackground.jpg");
  background-position: center;
}

#title {
  background-color: white;
  color: orangered;
  font-size: 35px;
  margin-top: 30px;
  margin-bottom: 35px;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

/* Link highlight hover */

.source {
  color: #FFF;
  border-radius: 7px;
  padding: 5px;
}

.source:hover {
  color: #00aeff;
}

/* Link highlight hover */

p {
  color: #FFF;
  font-size: 30px;
  font-family: 'Lato', sans-serif;
}

#description {
  text-align: center;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 10%;
  height: auto;
}

/* Navbar CSS */

.navbar {
  background-color: #333;
  overflow: hidden;
}

.navbar a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

/* Navbar CSS */