@import "header.css";
@import "footer.css";
@import "maps.css";
@import "charger.css";


html, body {
    height:100%;
    padding:0;
    margin:0;
    width:100%;
}

body {
    overflow: auto;
    display: flex;
    flex-direction: column;
    font-family: Times, Arial, serif;
}

a {
    color: black;
    font-family: Times, Arial, serif;
}

p {
    margin: unset;
}


/*link for parks' button direction*/
.directions{
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 30px;
    width: 200px;
    display: block;
    margin: 20px auto;
}

.directions:hover{
    /*color: black;*/
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.row{
    width: 100%;
    margin: 0px;
}

.col-sm-2{ padding: 0px; }

#button_area{ margin-top: 20px; }

/* maps' buttons */
.btn{
    width: 100%;
    border-radius: 0px;
    background-color: transparent;
    border-bottom-style: groove;
    border-bottom-color: black;
    border-bottom-width: 1px;
    border-top-style: groove;
    border-top-color: black;
    border-top-width: 1px;
}

.btn:hover{
    background-color: rgba(0, 0, 0, 0.14);
    transition: all 200ms ease;
}

#content{
    flex-grow:1;
    width:90%;
    margin-top:10px;
    margin-left: auto;
    margin-right: auto;
}


.column{
    width: 50%;
    margin:0px;
}
.column-content{
    margin-left: 25%;
    margin-right: 25%;
}

.textDiv{
    display:block;
    margin:auto;
    width: 80%;
    text-align:justify;
    margin-top: 50px;
    margin-bottom: 15px;
}

.clickHere{
    text-decoration: underline;
    text-decoration-style:solid;
}

.textAligned{
    width: 90%;
}

.textAligned p{
    text-align: justify !important;
}


/* Responsive layout rules for smartphones */

@media screen and (max-width: 770px) {

    h3, h4{
        text-align: center;
    }

    #map_area p{
        text-align: center;
    }

    .col-sm-4{
        padding-right: 10px;
        padding-left: 10px;
    }

    /*
        MAPS' buttons
     */
    .btn{
        width: 100%;
        margin-top: 5px;
        /*margin-bottom: 5px;*/
        border-radius: 0px;
        background-color: rgba(0, 0, 0, 0.1);
        border-bottom-style: hidden;
        border-top-style: hidden;
    }

    .btn:hover{ background-color: rgba(0, 0, 0, 0.2); }

    /*
    .homepage_elements{
        flex-direction: column;
    }

    .column{
        width: 100% !important;
        margin: 0px;
        margin-bottom: 20px !important;
    }*/


    .textDiv h2{
        text-align: center;
    }
    .textAligned{
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 230px){
    .directions{
        width: 100%
    }
}

