.Container{
    width: 100%;
    max-width: auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

body{
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.6;
}
.Container .card{
    width: 33%;
    height: 570px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0,0,0, 0.2);
    overflow: hidden;
    margin: auto;
    text-align: center;
    transition: all 0.25s;
    align-items: center;

    
}

.Container .card:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0,0,0,0.2);
}

.Container .card img{
    height: 220px;
    width: 230px;
}

.Container .card h4{
    font-weight: 200;
}

.Container .card p{
    padding: 0 1rem;
    font-size: 15px;
    font-weight: 200;
}
