*{
  margin: 10;
  margin-left: 10px;
  padding: 0;
  font-family: 'Poppins',sans-serif;
  box-sizing: border-box;
  text-align: center;
}

html{
  scroll-behavior: smooth;
}
body{
  
  background:rgb(188, 7, 244);
  color:white;
  margin: 0;
  padding-top: 0px;
    margin-top: 0;
    margin: 100;
    padding-bottom: 10px;
}
    #porfolio{
      padding: 50px 0;
      text-align: center;
    
    }
    .projects-list{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-gap: 40px;
      margin-top: 50px;
      text-decoration-color: #fff;
    }
    .project{
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }
    .project img{
      width: 100%;
      border-radius: 20px;
      display: block;
      transition: transform 0.5s;
    }
    .layer{
      width: 100%;
      height: 0;
      background: linear-gradient(rgba(0,0,0,0.6),#ff004f);
      border-radius: 10px;
      position: absolute;
      left: 0;
      bottom: 0;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 0 40px;
      text-align: center;
      font-size: 14px;
      transition: height 0.5s ;
      text-decoration-color: #fff;
    
    }
    .layer h3{
      font-weight: 500;
      margin-bottom: 10px;
    }
    .project:hover img{
      transform: scale(1.1);
    }
    .project:hover .layer{
      height: 100%;
    }
    .btn{
      display: block;
      margin: 50px auto;
      width:fit-content;
      border: 1px solid #ff004f;
      text-decoration-color: #fff;
      padding: 20px 50px;
      border-radius: 10px;
      text-decoration: none;
      color: #fff;
      transition: background 0.5s;
    }
    .btn:hover{
      background: #ff004f;
    }
  