/* Contact Section */
@import 'colors.css';
@import 'keyframes.css';

.contact-section {
    background-color: var(--primary-background-color-dark);
}

.social-media {
    margin-top: 20px;
    text-align: center;
}

.social-media a {
    margin: 0 10px;
    color: var(--primary-text-color-dark);
    font-size: 30px;
    transition: color 0.3s ease;

    text-decoration: none;
}

.social-media a:hover {
    color: var(--primary-color);
    background: var(--gradient-color);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 15s infinite ease-in-out;
}


.map-container {
    margin-top: 20px;
    border: none;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}