@import url('CSS/reset.css');
html {

  font-family: 'Kalam', cursive;
  background-color: black;
}
body {
  margin-left: 20px;
  margin-right: 20px;
  color: beige;
  letter-spacing: .2em;
  background-image: url("/images/background.jpg");
}

.mainNav {
  display: flex;
  background: hsl(0, 0%, 15%);
  justify-content: space-between;
  padding-top: 40px;
  align-items: flex-end;
  margin-bottom: -16px;
}

.mainNav li {
  display: inline-block;
  font-size: large
  
}

.mainNav li a {
  
  text-decoration: none;
  color: gold;
  padding: .6em 1em;
  transition: all .5s;
}

.mainNav li a:hover {
  border-left: 3px solid white;
         color: white;
}

.gallery {
  display: grid;
  justify-content: center;
  margin-bottom: 200px;
}

.gallery h1 {
  margin-top: 70px;
  display: flex;
  justify-content: center ;
}

.photos {

  max-height: 500px;
  max-width: 750px;
  margin: 30px;
  width: 100%;
  height: 100%;
  

}




.footer {
  background-color: hsla(0, 0%, 0%, 0.797);
  
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
  justify-content: space-around;
  
}

@media only screen and (max-width: 687px) {
  .sloganh1 {
    font-size: 3.5em;
    color:aqua
  }

  .sloganp {
    color: aquamarine;
    font-size: 1em;
  }

  .photos {
    margin: 20px;
    max-height: 300px;
  max-width: 450px;
  margin: 30px;
  width: 100%;
  height: 100%;
  
  }
}

@media only screen and (max-width: 550px) {
  .mainNav {
    display: flex;
    background: hsl(0, 0%, 15%);
    justify-content:left;
    padding-top: 30px;
    align-items: flex-end;
    margin-bottom: -16px;
  }
  
  .mainNav li {
    display: inline-block;
    justify-content: space-between;
    font-size: medium;
    margin-left: -20px;
    margin-right: -10px;
    
  }

  body {
    margin-left: -10px;
    margin-right: 0px;
    color: beige;
    letter-spacing: .2em;
    background-image: url("/images/background.jpg");
    }

   

  .sloganh1 {
    font-size: 2.5em;
    color:black;
  
  }

  .photos {
    
    max-height: 245px;
  max-width: 340px;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  height: 100%;
  
  }

  

  .footer {
    display: block;
    text-align: center;
    
    
    
  }

  .footer a {
    color:gold;
  }
}

