.map_container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vh;
    gap: 2vw;
    padding: 1vw;

    border-style:dashed;
    border-color:rgb(184, 182, 102);
}
 .map iframe{
    width: 35vw;
    height: 50vh;
    border-radius: 8%;
    transition: 0.5s;
}
.map_text h2
{
    text-align: center;
    font-size: calc(2 * (1vw + 1vh)/2);
    margin-bottom: 4vh;
    color: rgb(66, 77, 64);

    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: italic;
}
.map_text p
{
    font-size: calc(2 * (1vw + 1vh)/2);
    margin-top: 2vh;
}
.map iframe:hover {
    transform: translateY(-15px);
}
