@charset "utf-8";
/* CSS Document */
.h2_color{
    background-color: rgb(247, 206, 238);
}

.container{
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows:auto;
justify-content:center;
}

.grid_test div:nth-child(1){
    background-color: rgb(242, 255, 255);
    text-align: center;
}
.grid_test div:nth-child(2){
    background-color: rgb(242, 255, 255);
}



.text_center_left{
    display: inline-block;
    text-align: left;
}




.grid-container-Leaflet-1{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,360px);
    grid-template-rows:auto;
    grid-gap: 5px;
    justify-content:center;
    }

    .grid_test div:nth-child(1){
        background-color: rgb(242, 255, 255);
        text-align: center;
    }
    .grid_test div:nth-child(2){
        background-color: rgb(242, 255, 255);
    }
     
