/*    MEINE INTERESSEN    */

.interests-container {
    padding: 100px;
    background-color: #ffffff;
    text-align: center;
}

.interests-heading {
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
    text-align: left;
}

.interest-cards {
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: center;
}

.interest-card {
    background-color: #ffffff;
     width: 250px;
    padding: 13px 13px 32px 13px;
    border-radius: 5px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: rotate(-2deg);
    transition: transform 0.2s ease;
}

.interest-card:hover {
    transform: rotate(0deg) scale(1.03);
}


.interest-card img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.interest-title {
    font-family: 'Breathing', cursive;
    font-size: 30px;
    margin-bottom: 8px;
    color: #000;
}

.interest-description {
    font-size: 14px;
    line-height: 1.4;
    color: #1c1c1c;
    font-weight: bold;
}



