/*To style the birdSquirrels image dimension*/
.birdSquirrels img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.birdSquirrels {
  padding: 10px;
}
/*To align the text to the center of the page*/
h1 {
  text-align: center;
}

/*Styles Gallery button with border-radius and background colour */
.galleryBtn {
  border-radius: 5px;
  background-color: #469f34;
  color: white;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

/*This removes the line underneath the gallery button*/
.galleryBtn:hover {
  background-color: #747774;
}

/*This sets the margin at the top and bottom of the text paragraph*/
.textual {
  margin-top: 20px;
  margin-bottom: 100px;
}

/*Style that ensure image fit to page dimension*/
.butterflyAnimated img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.butterflyAnimated {
  margin: -10px;
}

/*To add media query to mobile phone*/
@media only screen and (max-width: 600px) {
  body {
    padding: 0;
  }

  /*To style image and ensure it is responsive*/
  .butterflyAnimated img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
  }
}
