h1{
  margin-top: 0;
  font-size: 10vh;
  padding-top: 20vh;
  text-align: center;
}
  
  section{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vH;
    background-color: #f3f3f3;
  }
  
  .container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
  }
  
  .item {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 320px;
    max-width: 410px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
  }

    a{
      text-decoration: none;
      color: #1d1d1d;
    }
  
  .item *{
    transition: all 0.35s ease-in-out;
  }
  
  img {
    max-width: 100%;
    vertical-align: top;
    height: 310px;
  }
  
  .item:hover img {
    opacity: 0;
  }
  
  .text{
    width: 80%;
    height: 90%;
    position: absolute;
    top: -100px;
    left: 10%;
  }
  
  .item:hover .text{
    top: 20%;
  }
  
  .item:hover .button{
    bottom: 20%;
  }
  
  .item .button{
    position: absolute;
    bottom: -100px;
    left: 25%;
    width: 50%;
    border: 3px solid #1d1d1d;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover{
    background-color: #1d1d1d;
    color: #f3f3f3;
  }

  .button:hover a{
    color: #f3f3f3;
  }

  footer{
    margin-top: 5vh;
  }

  @media (max-width: 912px){
    h1{
      margin-top: 0;
      font-size: 5vh;
      padding-top: 20vh;
    }
  }