/* font-awesome styling */
i{
  margin-left: 15px;
  cursor: pointer;
}


/* cutomizing navbar */
.navbar{
    background-color: #362722;
  }
  .navbar a{
    color:white;
    font-size:smaller;
  }
  .navbar-toggler-icon{
    background-image:url('./images/toggle.jpg');
    }
  .dropdown-menu a{
    color:black;
  }




/* parallax image styling */
  .parallax {
    background-image: url('./images/group-dine.jpg');
    height: 100vh; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #parallax-text{
      padding-top:40vh;
    color:white;
    font-size:35px;
    font-weight: bolder;
    text-shadow:5px 5px 10px black;
    text-align: center;
  }




  /* sectiion-2 styling */
  #section-2{
    padding:80px;
  }



  /* image-gallery styling */
.gallery-group{
    display: flex;
    align-items: center;
    justify-content: center;
}
  .gallery-group img{
      margin: 10px;
height:90vh;
    width: 400px;
  }




  /* footer styling */
  footer{
    font-size: small;
    background:rgb(51, 48, 48);
    text-align: center;
    color:white;
    padding:50px;
  }
  footer #footer-part-1{
  padding:10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  footer #back-to-top{
    border:4px solid black;
    border-radius: 5px 5px 5px 5px;;
    width:100px;
  }
  footer #back-to-top a{
    color:gray;
    text-decoration: none;
  }
  footer #back-to-top a:hover{
    color:white;
  }



  
  /* reponsive design code */
  @media only screen and (max-width: 700px) {
    #section-2{
      padding:20px;
    }
    .gallery-group{
flex-direction: column;

width:300px;
  }
  footer #footer-part-1{
    flex-direction: column;
    align-items: flex-start;
  }
  footer i{
    margin:2px;
  }
}