
#main-plan{
    height: auto;
}

/*picture handling*/
#div-draw2 {
    max-width: 100vw;
    overflow: clip;
    background: url("images/draw2.png") no-repeat center;
    min-width: 100%;
    background-size : cover;
    height: 80vh;
}

/* map handling */

#map-with-weird-svg-background{
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: contain;
    width: 85%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("./images/Group.svg");
}

#iframe-map{
    aspect-ratio: 2/1;
    width: 80%;
    margin: 5%;
}

#title-map-plan{
    text-align: center;
    margin-top: 30px;
    font-size : 3em;
    text-decoration: underline;
    text-decoration-thickness: 7%;
}

@media (max-width: 850px) {
    #map-with-weird-svg-background {
        background-image: none;
        width: 100%;
    }
    #title-map-plan{
        margin-bottom: 0;
        font-size : 2em;
    }
    #iframe-map{
        width: 80%;
        height: 50vh;
    }
}

/*handling the bigger hours in the text*/

.hour-bold{
    font-size: 2em;
    font-weight: bold;
}

#text-main{
    margin: 50px auto;
    font-size: 1.7em;
    text-align: center;
    max-width: 60%;
}
#text-main div {
    padding : 10px;
}

@media (max-width: 850px) {
    .hour-bold{
        font-size: 2em;
        font-weight: bold;
    }

    #text-main{
        margin: 50px auto;
        font-size: 1.4em;
        text-align: center;
        max-width: 80%;
    }
}


/*handle the list of addresses at the bottom of the page*/

#addresses{
    font-size: 1.5em;
    margin: 50px 0 80px 0;
}
#addresses p{
    text-align: center;
}

@media (max-width: 850px) {
    #addresses{
        font-size: 1.2em;
        margin: 50px 50px;
        text-align: justify
    }

}