html {
    scroll-behavior: smooth;
  }
  body,
  html {
    margin: 0;
    padding: 0;
  }
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: rgb(73, 39, 19);
  }
  header {
    background-color: #fff1e6;
    width: 100%;
    height: 50px;
    margin-top: 0px;
  }
  header h1 {
    position: absolute;
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
  main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width: 1280px;
    position: relative;
    margin: 0px auto;
  }
  article {
    background-color: #fff1e6;
  }
  aside {
    background-color: #cb9a7c;
  }
  footer {
    background-color: #fff1e6;
    height: 300px;
  }
  nav {
    width: 100%;
    background-color: #cb9a7c;
    height: 50px;
    padding-top: 30px;
  }
  nav ul {
    text-align: center;
    margin: 0;
    padding: 0;
  }
  nav ul li {
    display: inline-block;
    margin: 0px 20px;
  }
  nav ul li:first-child {
    margin-left: 15px;
  }
  nav li a {
    text-decoration: none;
    color: rgb(73, 39, 19);
  }
  
  article,
  aside,
  footer {
    padding: 15px;
  }
  #banner {
    width: 100%;
    height: 35vh;
    background-color: #cb9a7c;
    background-image: url(../img/lilypad.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
  }
  @media only screen and (max-width: 1024px) {
    main {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (max-width: 600px) {
    main {
      grid-template-columns: 1fr;
    }
  }
  button#scroll-top {
    float: right;
    position: relative;
    right: 20px;
    top: 0px;
  }
  main section {
    text-align: center;
  }

  /* Gallery */
#container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 50px;
  grid-column-gap: 20px;
  margin-bottom: 100px;
  padding: 5%;
  background-color: #cb9a7c;
}
.boxes {
  width: 300px;
  height: 300px;
  background-color: #cb9a7c;
  border: rgb(73, 39, 19) 3px solid;
  box-shadow: 20px 20px 20px -4px rgba(73, 39, 19, 0.59);
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 1024px) {
  #container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  #container {
    grid-template-columns: 1fr;
  }
}
.boxes.a {
  background-image: url(../img/parasol.jpeg);
  background-size: cover;
}
/*.boxes.a:hover{
  height: 370px;
}*/
.boxes.b {
  background-image: url(../img/garden.jpg);
  background-size: 115%;
}
/*.boxes.b:hover{
  width: auto;
} */
.boxes.c {
  background-image: url(../img/poppies.jpg);
  background-size: cover;
}
.boxes.d{
  background-image: url(../img/bain.jpg);
  background-size: cover;
}
.boxes.e{
  background-image: url(../img/pond.jpg);
  background-size: cover;
}
.boxes.f{
  background-image: url(../img/jeanne.jpg);
  background-size: cover;
}

.boxes span {
  color: rgb(73, 39, 19);
  background: rgba(255, 241, 230, 50%);
  font-size: 20px;
  width: 100%;
  display: block;
  height: 185px;
  text-align: center;
  padding-top: 115px;
  opacity: 0;
}
/*.boxes.b span:hover{
  width: 400px;
} */
.boxes:hover,
.boxes:focus {
  transition: all 0.5s ease;
}
.boxes span:hover{
  opacity: 1;
  transition: 0.5s ease;
}
  