* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
 
.intro {
    flex-direction: column;
    padding: 3rem;
    /* font-size: inherit; */
    
}
.intro h1 {
  font-size: 2.5rem;
}

.img_container {
  width: 60vw;
  height: 40vw;
  /* height: auto; */
  border-radius: .5rem;
  margin: 3rem auto;
  background-image: url(../images/rrg20.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.hunt_container {
    padding: 2rem;
    width: 85vw;
    margin-left: auto;
    margin-right: auto;
}

.hunt_container p {
  font-size: 1.2rem;
}

.pic-title {
    width: 75vw;
    margin-left: auto;
    margin-right: auto;
  }

  /* ********************************************** */
  .fg-gallary {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: hidden;
    padding-bottom: 3rem;
  }

  .fg-gallary img {
    margin: 1rem;
    padding: 1rem;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    transition: transform .2s;
    
  }
  .hunt_img {
    width: 50%;
    height: auto;
  }

  @media (max-width:39rem) {
    .fg-gallary img:hover {
        transform: scale(1.5);
        padding: 0;
      }

      
  }
  

  @media (min-width:40rem) {
    .fg-gallary {
      flex-direction: row;
    }
    .fg-gallary img:hover {
      transform: none;
      

    }

    .hunt_container {
        width: 75vw;
    }
    .hunt_img {
      width: 30%;
      height: auto;
    }
  }
  /* **************************** */


