body{
    overflow-x: hidden;
}


  #top-button {
    font-size: 20px;
    transition: 0.3s ease;
  }

  .grid-item {
    width: 25%;
  }

  .grid-item--width2 {
    width: 50%;
  }

  */ .img-fluid {
    border-radius: 5px 5px;
  }





  /* ========Project Box Css Mohit Jaisal (07-Aug-2021) */
  @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
  * {
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #f7f8fc;
  
  color: #10182f;
}
.boxcontainer {
    font-family: "Roboto", sans-serif;
  display: flex;
  width: 1040px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  text-align: center;
}
.projectcard {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
}
.projectcard-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.projectcard-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-center;
  padding: 20px;
  min-height: 250px;
  text-align: center;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 10px 0 10px;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.tag:hover{
  transform: scale(1.2);
	box-shadow: 0 1rem 1rem rgb(177, 177, 177);
	transition: all 0.4s;
	font-size: 0.8rem;
  text-decoration: bold;
}


.tag-github {
  background-color: #343A40;
  text-align: left;
}
.tag-website {
  color: #10182f;
  background-color: #E7E0C9;
  text-align: right;
}


.tag-teal {
  background-color: #47bcd4;
}
.tag-purple {
  background-color: #5e76bf;
}
.tag-pink {
  background-color: #cd5b9f;
}

.projectcard-body p {
  font-size: 13px;
  margin: 0 0 40px;
}
.user {
  display: flex;
  margin-top: auto;
}

.user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.user-info h5 {
  margin: 0 !important;
}
.user-info small {
  color: #545d7a;
}