*{
    box-sizing:border-box;
}

#wrapper {
	display:grid;
	grid-auto-rows:minmax(0,auto);
	grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
  
}
header{
    background-color:#00291B;
    text-align:center;
    grid-row:1/2;
    grid-column:1/9;
    
    
    
}
h1{ 
    font-family:fatboy,serif;
    color:#A4D38F;
    font-size:60px;
    font-weight:400;
    text-align:center;
    
    
    
}
h2{
    font-family:mayence-premium, sans-serif;
    color: white;
    font-size:0.4in;
    font-weight:400;
    
    
    
}

h3{
    font-family: mayence-premium, sans-serif;
    color:white;
    text-align:center;
    font-size:3em;
    grid-row:4/5;
    grid-column:2/8;
    font-weight:400;
}
nav{
    font-weight:bold;
    background-color:#A4D38F;
    grid-row:2/3;
    grid-column:1/9;
}

nav a{
    text-decoration:none;
    color:#00291B;
    display:block;
    text-align:center;
    padding-bottom:1.5em;
    padding-top:1.5em;
    font-size:larger;
    font-family:'Gill Sans';
    
}

nav a:hover{
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    justify-content:space-around;
    padding:0;
    
}




#home{
    background-image: url(images/home.jpg);
    height:620px;
    background-repeat:no-repeat;
    background-position:center;
    grid-area:3/1/4/9;
    margin-bottom:1em;

}


body{
    background-color:#00291B;
    color:#00291B;
    margin:0;
  font-family:'Gill Sans';
  }

footer{
    color:#00291B;
    text-align:center;
    font-size:1em;
    font-weight:bold;
    padding:.2em;
    background-color:#A4D38F;
    grid-row:9/10;
    grid-column:1/9;
    margin-top:3em;
    
}

#aboututah{
    color:#00291B;
    background-color:#A4D38F;
    text-align:left;
    padding:3em;
    font-size: larger;
    font-family:'Gill Sans';
    grid-row: 5/6;
    grid-column:2/8;
    width:100%;
    
    }
    #PlacesToGo{
        color:white;
        text-align:left;
        font-family:'Gill Sans';
        font-weight:bold;
        grid-row:3/4;
        grid-column:1/9;
        font-size:60px;
        padding-top:5rem;
        padding-left:0.5rem;
        padding-bottom:3rem;

    }

    #ThingsToDo{
      color:white;
      text-align:left;
      font-family:'Gill Sans';
      font-weight:bold;
      grid-row:3/4;
      grid-column:1/9;
      font-size:60px;
      padding-top:4rem;
      padding-left:0.5rem;
      padding-bottom:2rem;
    }

    #PlanATrip{
      color:white;
      text-align:left;
      font-family:'Gill Sans';
      font-weight:bold;
      grid-row:3/4;
      grid-column:2/8;
      font-size:60px;
      padding-top:4rem;
      padding-left:0.5rem;
      padding-bottom:2rem;
    }

    #questions{
      color:white;
      text-align:left;
      font-family:'Gill Sans';
      font-weight:bold;
      grid-row:3/4;
      grid-column:2/8;
      font-size:60px;
      padding-top:4rem;
      padding-left:0.5rem;
      padding-bottom:2rem;
    }

   
    * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  grid-row: 4/5;
  grid-column:1/9;
}

/* Hide the images by default */
.mySlides {
  display: none;

}

.mySlides img{
  width:100%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color:white;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

#imagegrid{
  grid-row:5/6;
  grid-column:1/9;
  display:grid;
	grid-auto-rows:minmax(0,auto);
  grid-template-columns: repeat(4, minmax(0, 25%));
  
}

#imagegrid img{
  width:100%;
}

#imagegrid figcaption{
  color:#A4D38F;
}

form{ 
  display:grid;
  grid-row:5/6;
  grid-column:2/8;
  grid-template-rows:auto;
  grid-template-columns: 200px 1fr;
  grid-gap:0.75rem;
  width:100%;
  padding:1.5em
}

input,textarea{
  font-size: 1rem;
  padding:10px;
  color: #00291B;
  background-color:honeydew;
  border:none;
  border-radius:4px;
  
}

input{
  font-size: 1rem;
  padding:10px;
  color: #00291B;
  background-color:honeydew;
  border:none;
  

}


input:focus,textarea:focus{
  outline:none;
  background-color:honeydew;
}

label{
  padding:10px;
  text-align:left;
  color:white;
}

#Submit{
  width:10rem;
  grid-column:2/3;
  margin: 0 auto;

  
}

#results{
  color:#A4D38F;
    text-align:left;
    padding:3em;
    font-size: larger;
    font-family:'Gill Sans';
    grid-row: 5/6;
    grid-column:2/8;
    width:100%;
}

#questionexplanation{
  color:#A4D38F;
  font-family:'Gill Sans';
  grid-row:4/5;
  grid-column:2/8;
  padding-left:1rem;
  padding-bottom:1rem;
  font-size:large;
}

#tripplanning{
  color:#A4D38F;
  font-family:'Gill Sans';
  grid-row:4/5;
  grid-column:2/8;
  padding-left:1rem;
  padding-bottom:1rem;
  font-size:large;
}

#restaurants{
  color:white;
  text-align:left;
  font-family:'Gill Sans';
  font-weight:bold;
  grid-row:5/6;
  grid-column:2/8;
  font-size:40px;
  padding-top:4rem;
  padding-left:0.5rem;
  padding-bottom:1rem;
   
}

#restaurantscontent{
  color:#A4D38F;
  font-family:'Gill Sans';
  grid-row:6/7;
  grid-column:2/8;
  padding-left:1rem;
  padding-bottom:1rem;
  font-size:large; 
}

a:hover{
  
  background-color:transparent;
  color:white;
}


#hotels{
  color:white;
  text-align:left;
  font-family:'Gill Sans';
  font-weight:bold;
  grid-row:7/8;
  grid-column:2/8;
  font-size:40px;
  padding-top:4rem;
  padding-left:0.5rem;
  padding-bottom:1rem;
}

#hotelscontent{
  color:#A4D38F;
  font-family:'Gill Sans';
  grid-row:8/9;
  grid-column:2/8;
  padding-left:1rem;
  padding-bottom:1rem;
  font-size:large; 
}

#restaurantscontent a, #hotelscontent a{
color:white;
}





@media only screen and (max-width:900px){
  #wrapper {
      grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 128px)) minmax(0px, 1fr);
  }   
  #imagegrid{
    grid-template-columns: repeat(2, minmax(0, 50%));} 
    
    form{
      padding:1.5em;
    }
}


@media only screen and (max-width:600px){
  header h1{
      background-image:none;
      text-align:center;
      font-size:40px;
  }

  header h2{
    font-size:25px;
  }

  h3{
    font-size:30px;
  }

  #PlacesToGo{
    font-size:40px;
  }
  #ThingsToDo, #PlanATrip{
    font-size:40px;
  }

  
  #aboututah{
      text-align:left;
   }

  #home{
      height:400px;
  }

  nav ul{
      flex-flow:column wrap;
   
  }
  #wrapper {
      grid-template-columns:  repeat(8, minmax(0, auto));}

      #imagegrid{
        grid-template-columns: minmax(0, 100%);}     
 
        .mySlides img{
          max-width:300px;
        }

        form{
          grid-template-columns:auto;
          padding:1.5em;
        }

}



