.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  background-color: #bfe0cd;
}

nav a {
  color: black;
  text-decoration: none;
  padding: 5px 10px;
}

nav a:hover {
  background-color: #cee6ce;
  border-radius: 5px;
}

main {
  flex: 1;
}

.home-main {
  /* Location of the image */
  background-image: url(../images/lightcountryside.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#00A8BB;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

.logo {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.tagline {
  font-size: 1.2em;
  color: #000;
  font-style: italic;
  padding-bottom: 10px;
}

.floatright {
  float: right;
}

.floatleft {
  float: left;
}

.center {
  text-align: center;
}
