footer{
    padding: 70px 0;
    background-color: var(--secondary-color);
    transition: 0.3s;
   
    
}
footer h2{
    font-size: 70px;
    text-align: center;
}
footer p{
    font-size: 15px;
    text-align: center;
}
a {
    color: white;
    
}
.Insta img{
    
    gap: 50px; /* Abstand zwischen Bild & Text */
   
    
}
footer a{
    text-decoration: none;
}
footer a:hover{
    color: #297ae3af;
    font-size: 16px; 
}
.image-link img {
    width: 20; /* Größe anpassen */
    height: 20;
    border-radius: 10px; /* Abgerundete Ecken */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-link img:hover {
    transform: scale(1.03); /* Bild vergrößert sich */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Leichter Schatten */
    }




