
.footer {
    width: 100%;
    height: auto;
    background-color: rgb(13, 4, 113);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin-top: 40px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.contact{
    width: 50%;
    margin:auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.map iframe{
   margin: 20px 0;
   border: 2px solid white;
   border-radius: 10px;
}

.media-icons {
    width: 30%;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.media-icons img {
    width: 40px;
    height: 40px;
}

.contact h2{
    font-size: 2rem;
    color: white;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.contact p{
    color: rgb(249, 247, 242);
    margin: 3px;
}

.credit{
    margin-bottom: 10px;
    color: white;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}





@media (max-width: 600px) {
    .footer {
        height: auto;
    }

    .contact {
        width: 90%;
    }

    .map iframe {
        width: 100%;
        height: auto;
    }

    .media-icons {
        width: 60%;
        gap: 20px;
    }

    .media-icons img {
        width: 30px;
        height: 30px;
    }

    .contact h2 {
        font-size: 1.5rem;
    }
}