@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-size: 1.6rem;
    background-color: #f5f6fa;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    margin-top: 1.2rem;
}

div#user-info {
    text-align: center;
    width: 70%;
    margin: auto;
}

#info-inner {
    margin: 3rem 0;
}

div#user-info a {
    text-decoration: none;
    color: #273c75;
}

div#user-info a:hover {
    color: #40739e;
}

div#user-info #permission {
    display: none;
}

#latLng, #zipcode, #geohash {
    color: #16a085;
}

/* MAP STYLING */
#mapID {
    margin: auto;
    margin-top: 4rem;
    height: 500px;
    width: 70%;
    margin-bottom: 5rem;
}