/* styles.css */

/* Set background color */
body {
    /* padding: 50px; */
    background-color: #f2f2f2;
    user-select: none;
    height: 100%;
}


/* Style heading */
h1 {
    padding: 25px;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Style paragraph */
p {
    font-size: 16px;
    color: #666;
    text-align: center;
}

#map {
    height: 500px;
}

.disable-dbl-tap-zoom {
    touch-action: manipulation;
}

.clicker_button {
    margin: auto;
    width: 50%;
    max-width: 500px;
    height: 10%;
    scale: 1;
    transition: all .5s ease;
}

.clicker_button:hover {
    scale: 0.95;
}