/* Style based on  Eyüp Uçmaz's original codepen.io
https://codepen.io/eyupucmaz/pen/oNbeXOb */

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  box-sizing: border-box;
}
.container-static{
  width: 100%;
  margin: auto;
}
.main-container {
  width: 99%;
  padding: 30px;
  margin: auto;
  border-radius: 2px;
  box-shadow: -3px 2px 8px 4px rgba(56,40,40,0.59);
  -webkit-box-shadow: -3px 2px 8px 4px rgba(56,40,40,0.59);
  -moz-box-shadow: -3px 2px 8px 4px rgba(56,40,40,0.59);

}

.heading-container {
  text-align: center;
}

.heading {
  font-weight: 600;
}

.credit {
  margin: 10px 0px;
  color: #888888;
  font-size: 25px;
  transition: all 0.5s;
}

.credit a {
  color: inherit;
}

.card-container {
  display: flex;
  margin: auto;
  width: 85%;
  justify-content: space-evenly;
  flex-wrap: wrap;

}
.card {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 20%;
  min-width: 350px;
}
.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  min-height: 250px;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.tag-teal {
  background-color: #47bcd4;
}
.tag-css {
  background-color: #5e76bf;
}
.tag-html {
  background-color: #145a03;
}
.tag-pink {
  background-color: #cd5b9f;
}
.tag-python {
  background-color: #bbc902;
}
.tag-js {
  background-color: #737a05;
}
.tag-sql{
  background-color: rgb(0, 0, 0);
}
.tag-tensorflow{
  background-color: rgb(7, 250, 80);
}

.card-body p {
  font-size: 13px;
  margin: 0 0 40px;
}
.user {
  display: flex;
  margin-top: auto;
  justify-content: space-evenly;
}

.user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.user-info h5 {
  margin: 0;
}
.user-info small {
  color: #545d7a;
}
.web-links{
  margin-left: 10px;
  
}
.web-links i{
  margin-right: 4px;
}
.card-link{
  text-decoration: none;
}
.web-links .card-link-text{
  color: rgb(128, 128, 128);
}

@media only screen and (max-width:600px)  {
  .card-container{
    width: 100%;
  }
  .card{
    min-width: 100%;
  }
  .card-body{
    min-height: 100px;
    height: auto;
  }
}