main {
    margin: 180px 0 60px;
}

h2 {
    color: #5CBDBD;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.card img {
    width: 345px;
    height: 300px;
    border-radius: 8px;
    object-fit: fill;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: .3s ease;
}

.card img:hover {
    transform:scale( 1.1);
}

@media screen and (max-width: 600px) {
    .card img {
        width: 150px;
        height: 150px;
    }

    h2 {
        font-size: 28px;
    }
}