.list{
    width: 80%;
    height: fit-content;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid gainsboro;
    margin: auto;
    box-shadow:0px 6px 14px -9px rgba(0,0,0,1);
}

.list .listItem:last-of-type{
    border: none;

}

.listItem{
    background-color: rgb(255, 255, 255);
    height: fit-content;
    border-bottom: 1px solid gainsboro;
    border-left: none;
    border-right: none;
    padding: 30px 50px;
    position: relative;

}

.listItem h3{
    color: black;
    

}
.listItem small{
    display: inline-block;
    width: fit-content;
    color: gray;
}

.listItem .button{
    float: right;
}