body {
    background-color: white;
    font-family: 'Roboto', sans-serif;
}
.container {
    width: 100%;
    margin: auto;
}
.guess {
    padding: 16px;
    display: block;
    margin: auto;
    background-color: skyblue;
    font-weight: bold;
    width: 100px;
}
.guess_container {
    margin-top: 50px;
    margin-bottom: 50px;
    width : 100%;
}

/* Result page: Rannañ button + copy notification */
.rannañ-wrap {
    position: relative;
    display: inline-block;
}
.copy-notification {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(0.5em, -50%);
    font-size: 0.85rem;
    color: var(--copy-ok-color, #0d7d0d);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.copy-notification.is-visible {
    opacity: 1;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.leaflet-container {
    width: 90%;
    height: 600px;
}

@media (min-width: 64em) {

    .leaflet-container {
        width: 800px;
        height: 600px;
    }
    .container {
        width: 800px;
        margin: auto;
    }
}

