#project-list ul {
  list-style: none;
  padding-left: 0;
}

#project-list li {
  margin: 10px;
}

#project-list a {
  color: #707070;
}

#project-list__content {
  display: none;
}

#projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#projects .project img {
  max-width: 100%;
}

#projects p {
  font-size: medium;
}

.project-card {
  position: relative;
  display: block;
  width: 300px;
  height: 400px;  
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.project-card a {
  text-decoration: none;
  color: black;
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: 16px 16px 0 0;       
  background-color: white;
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.project-card:hover .project-card-overlay {
  transform: translateY(0);
}

.project-card-header {
  position: relative;
  padding: 16px;
  transform: translateY(-100%);
  background-color: white;
  border-radius: 16px 16px 0 0;    
  transition: .2s ease-in-out;
  box-shadow: 0 -4px 6px rgb(0, 0, 0, 0.25);
}

.project-card:hover .project-card-header {
  transform: translateY(0);
}

.project-card-header-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: medium;
  font-weight:bold;
}

.project-card-description {
  margin-top: 0;
  padding: 0 16px 0 16px;
}


@media only screen and (min-width: 640px) {
  #projects {
    padding: 15px;
  }
  #project-list__button {
    display: none;
  }
  #project-list__content {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  #projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
  }
  
}
/*# sourceMappingURL=projects.css.map */