body {
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    padding: 50px 0px 0px;
    justify-content: space-between;
}

p{
    text-align: justify;
}

.col {
    margin: 0px 30px 30px 30px;
    transition: 0.8s ease;
    background-color: #DFDFDF;
    border: 3px solid;
    border-color: #D8D8D8;
}

.col img {
    padding-top: 10px;
    width: 80px;
    height: 100px;
    object-fit: contain;
}

h1 {
    padding: 40px 0px 20px 0px;
    text-align: center;
    font-weight: bolder;
}

.col h2 {
    padding: 10px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.col:hover {
    border-color: green;
}