body {
    margin: 0;
    padding: 0;
    background: #f8e9d9;
  }

  body a{
    color: blue;
  }

  .nav ul {
    list-style: none;
    background-color: #444;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .nav li {
    font-family: 'Oswald', sans-serif;
    /* font-size: 1.2em; */
    line-height: 40px;
    height: 40px;
    border-bottom: 1px solid #888;
  }

  .nav a {
    text-decoration: none;
    color: #fff;
    display: block;
    transition: .3s background-color;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav a:hover {
    background-color: white;
    color: black;
  }

  .nav a.active {
    background-color: #fff;
    color: #444;
    cursor: default;
  }

  .nav li {
    float: left;
    z-index: 1000;
  }
  .nav ul {
    overflow: none;
    min-width: 200px;
    margin: 0 auto;
  }
  .nav {
    background-color: #444;
    z-index: 1500;
    position: absolute;
    z-index: 600;
    top: 0px;
    left: 0;
    right: 0;
  }

  @media screen and (min-width: 600px) {
    .nav li {
      min-width: 120px;
      border-bottom: none;
      height: 40px;
      line-height: 40px;
      /* font-size: 1.4em; */
      margin-left: 50px;
    }

    /* Option 1 - Display Inline */
    .nav li {
      display: inline-block;
      margin-right: -4px;
    }

  }

  /* Level 2 */
.menu > li > ul {
	text-align: left;
	width: auto; /* change auto value with 200px if you want a bigger menu */
	display: none;
	background: #444;
	position: absolute;
	top: 100%;
	left: auto;
	z-index: 9999999; /* if you have YouTube iframes, is good to have a bigger z-index so the video can appear above the video */
}
.menu > li:hover > ul {
  display: grid;
}

.menu > li > ul > li{
  margin: 0;
}
.menu ul li a {}
.menu ul li a:hover {}

/* END MENU */

.photo img{
  display: block;
  margin-top: 20px;
  position: absolute;
  left: 3%;
  top: 6px;
  width: 25%;
  }

  @media screen and (max-width: 800px) {
    .photo img{
        display: none;
    }
  }


  .center-background{
    background-position: center;
  }

  .menuWrapper {
    position: absolute;
    z-index: 500;
    top: 80px;
    left: 3%;
  }

  .sidebar-toggle-wrapper {
    z-index: 700;
}

#landscape{  
  min-height: 600px;
  background-image: url('../images/roussillon-photo-paul-palau-banyuls.jpg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: -100px;
  background-position-x: 0px;
  color: white;
  font-size: 80%;
}
#landscape a{
  color: white;
}