html {
    height: 100%;
    
    margin: 0;
    font-size: 16px;
    padding:0;
    scrollbar-width: normal;
  scrollbar-color:#78ce5e black;
}

body {
  
  scroll-behavior: smooth;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url("../images/wood.jpg");
  user-select: none;
  /* Set a specific height */
  height: 100%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.linkedin {
  display: inline-block;
  transition: .5s ease;
  height: 40px;
  
}

.linkedin:hover {
  transform: rotateZ(360deg);
}

.logo {
 
  /* position: absolute;
  top:0; */
  height: 10%;
  margin-left: 33em;
  width: 20%;
  display: inline-block;
}


a {
  font-weight: bold;
  text-decoration: underline;
  
}

a:hover {
  text-decoration: none;
  color: #78ce5e;
}


@media only screen and (max-width:600px) {
  body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/bg_mobile.jpg");
  }

  /* css for mobile logo */
  .logo {
    /* height: 30%; */
    width: auto;
    margin-bottom: 2em;
    margin-left: 2em;
    margin-right:2em;
  }

}

.main-heading {
  font-size: 3em; 
  font-weight: normal;
  color:rgb(255, 255, 255);
  font-family: 'Poppins', sans-serif;
  padding-top:2em;
  padding-left: 1.5em;;
}

.foodsome hr {
  width: 400px;
}



.project-text {
  color: rgb(224, 224, 224);
  padding-top:2em;
  font-size: 1em;
  margin-right: 15em;
  margin-left: 4.5em;
  margin-top: 2em;
  line-height: 2;
  font-weight: 500;
  cursor: default;
  

}
.project-text:nth-last-child(1){
  margin-bottom: 6em;
}

.project-text p {
  animation: zoomIn 1s;
}


@media only screen and (max-width: 600px) {
    .project-text {
      margin-right: 1.5em;
      margin-left:2.8em;
      font-weight: 300;
    }
    .foodsome hr {
      width:265px;
    }
    .team hr {
      width: 240px;
    }

}

.team hr {
  width: 240px;
}

#team1 {
  float: left;
  height: 300px;
  width: 300px;
  margin-right: 2em;
  margin-bottom: 1em;
  border-radius: 50%;
  padding-bottom: 1em;
  overflow: hidden;
  transition: transform .5s ease;
}

#team1:hover {
  transform: scale(1.05);
}


#team2 {
  background-position: center;
  float: right;
  height: 300px;
  width: 300px;
  margin-left: 1em;
  margin-bottom: 1em;
  border-radius: 50%;
  overflow: hidden;
  
  transition: transform .5s ease;
}
#team2:hover {
  transform: scale(1.05);
}


.name {
  font-size: 1.5em;
  color: white;
  font-weight: 600;
}


.trans-bar {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.363);
}

.trans-bar h2 {
  text-align: center;
  padding-top: 1em;
  font-family: 'Sansita swashed';
  font-size: 1.6em;
  color:rgb(41, 41, 41);
}


@media only screen and (max-width:600px){
  .trans-bar h2 {
    padding-top: 1.5em;
    font-size:1.2em;
    color:rgb(3, 3, 3);
  }
}


body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
    background-color: black;
    
}

body::-webkit-scrollbar
{
    width: 12px;
    background-color: rgb(5, 5, 5);
}
body::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #78ce5e;
}