.works{
    width:50%;
    margin:auto;
    display: block;
}
.works img{
    width:100%;
    height:auto;
    box-shadow: 8px 8px 0px 0 rgba(0, 0, 0, 0.33);
    margin-bottom: 3px;
}
.works h4{
    font-size: 30px;
    text-align: center;
    margin-bottom:15px;
}
.works h4 {
    position: relative;
    padding: 0.5em;
    background: #a6d3c8;
    color: white;
  }
  
.works h4::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px rgb(149, 158, 155);
  }
.works p{
    overflow-wrap: break-word;
    font-size: 20px;
}

@media screen and (max-width:480px){
    .works h4{
        font-size:20px;
    }
    .works p{
        font-size:15px;
    }
    .works{
        width:70%;
    }
}