* {
    margin: 0;
    padding: 0;
    font-family: gilroy;
  }
  
  body {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
  }
  
  
  .card {
    margin: 40px;
    position: relative;
    max-width: 250px;
    box-shadow: 0 40px 60px -6px black;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .card-title {
    display: block;
    text-align: center;
    color: #fff;
    background-color: green;
    padding: 2%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    
  }
  
  .card img {
    width: 100%;
    height: 98%;
    object-fit: cover;
    display: block;
    position: relative;
   
  }
  
  .card-desc {
    display: transparent;
    font-size:large;
    position: absolute;
    height: 0;
    top: 38px;
    bottom: 30px;
    opacity: 0;
    padding: 15px 15px 10px;
    color: yellow;
    overflow-y: scroll;
    transition: 0.8s ease;
  }
  
  .card:hover .card-desc {
    opacity: 1;
    height: 350px;
  }
  
  h1 {
    font-size: 2.8rem;
    color: #fff;
    margin: 40px 0 20px 0;
    text-align: center;
  }
  