/* resets */
* {
    padding: 0;
    margin: 0;
  }
  
  html {
     scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  /* Adding the scrollbar effects */
  /* Gradient Scrollbar */
  
  body::-webkit-scrollbar {
    width: 10px;
  }
  
  
  body::-webkit-scrollbar-track {
    background-clip: content-box;
    background:  linear-gradient(0deg, black, red 100%);
  }
  
  body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: transparent; /* opacity: 0; should do the thing either */
    box-shadow: 0px 0px 0px 100000vh #fff;
  }
  
  /* giving the entire website a reveal class */
  
  .reveal{
    position: relative;
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    opacity: 1;
  }
  
  
  
  /* styling the header */
  #section-header {
    background-color: transparent;
    width: 100vw;
    height: 500px;
  }
  
  
  
  
  /* styling the header heading title */
  #section-header h1 {
    transform: translateY(20px);
    text-align: center;
    z-index: 5;
    background-color: transparent;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 0 10px red, 0 0 20px black;
  }
  
  
  /* styling the header carousel */
  #carouselFoodInterval {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 500px;
  }
  
.row {
    width: 100vw;
}

  .carousel-inner {
    position: relative;
      padding: 0;
    margin: 0;
    width: 100vw;
    height: 500px;
    justify-content: center;
  }
  
  .carousel-inner img {
  padding: 0;
    margin: 0;
    width: 100%;
    height: 500px; 
  }
  
  
  /* find section */
  #find {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  #find i {
    padding-right: 10px;
    color: red;
     transition: .3s all ease-in-out;
  }
  
  
  #find a {
    text-decoration: none;
    color: #333;
    transition: .3s all ease-in-out;
  }
  
  #find a:hover {
      color: red;
    cursor: pointer;
  }
  
  /* favorites section */
  #section-favorites {
    padding-top: 50px;
    align-items: center;
    height: 600px;
    background-color: #fff;
  }
  
  #section-favorites h5 {
    font-size: 18px;
  }
  
  #favorites-carousel {
    height: 100%;
    align-items: center;
  }
  
  #section-favorites .carousel-inner {
    height: 100%;
      align-items: center;
  }
  
  #section-favorites h2 {
    text-align: center;
    color: #111;
  }
  
  
  #section-favorites .card {
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 500px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.4);
    text-align: center;
  }
  
  #section-favorites img {
    height: 300px!important;
    width: 100%!important;
  }
  
  #section-favorites .carousel-control-prev, #section-favorites .carousel-control-next {
    color: #fff;
  }
  
  
  
  
  
  
  /* styling the about us section */
  #about-us {
    background: url("https://images.unsplash.com/photo-1543007630-9710e4a00a20?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=435&q=80");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
  }
  
  .header-text {
    transform: translateY(50px);
    height: 50px;
    width: 100vw;
    z-index: 3;
    background-color: rgba(0,0,0,0.4);
  }
  
  .section-text {
    margin-top: 200px;
    height: 200px;
    width: 100vw;
    z-index: 3;
    background-color: rgba(0,0,0,0.4);
  }
  
  .section-text-content {
    text-align: center;
     z-index: 5;
    font-size: 22px;
    color: #fff;
    text-shadow: 0 0 10px red, 0 0 20px black;
    height: 30px;
  }
  
  #about-us h1 {
    padding-top: 5px;
    text-align: center;
    z-index: 5;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 0 10px red, 0 0 20px black;
    height: 30px;
  }
  
  
  /* styling the about us section */
  #location {
    background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
  }
  
  #location h1 {
    padding-top: 5px;
    text-align: center;
    z-index: 5;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 0 10px red, 0 0 20px black;
    height: 30px;
  }
  
  
  
  
  /* styling the footer */
  #social i {
    text-align: center;
    align-items: center;
    height: 50px;
    width: 50px;
  font-size: 36px;
    border-radius: 50%;
    transition: .3s all ease-in-out
  }
  #social i:hover {
    color: red;
    text-shadow: 0 0 5px black;
  }
  
  #section-footer a {
    transition: .3s all ease-in-out;
  }
  
  #section-footer a:hover {
      color: red;
    text-shadow: 0 0 5px red;
  }