@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
    font-family: "Google Sans Code", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.myheader {
    background-color: #6f27ea;
}

body {
    color: rgb(21, 21, 21);
    background-color: #cccccd;
}

.facebook {
    font-size: 32px;
    color: rgb(17, 100, 253);
    /**/
}

.facebook:hover {
    color: rgb(59, 128, 255);
    transition: ease 400ms;
}

.instagram {
    font-size: 32px;
    color: #fc00d9;
}

.instagram:hover {
    color: #ff49e7;
    transition: ease 400ms;
}

.whatsapp {
    font-size: 32px;
    color: green;
}

.whatsapp:hover {
    color: rgb(0, 203, 0);
    transition: ease 400ms;
}

main {
    display: flex;
    justify-content: center;
}

.ul {
    border-left: 4px solid #fc00d9;
}

ul li {
    margin: 10px;
    list-style: none;
}

.space {
    padding: 5px;
}



@media (max-width: 600px) {

    .myheader a {
        font-size: 2rem;
        padding: 8px;
    }
}


/* MAPA */

.map-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    height: 400px;
}

.map {
    width: 100%;
    height: 360px;
    border-radius: 14px;

}

@media (min-width: 1024px) {
    .map {
        max-width: 90%;
        height: 360px;
        border-radius: 14px;
    }
}



footer {
    background: #212529;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}