#map {
    width: 100%;
    height: 100vh;
}

#map.finished {
    max-width: 900px;
    margin: 0 auto;
}

.city-question {
    z-index: 1030;
    background: #ffffFF;
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    padding: 17px;
}

.confirm-button {
    z-index: 1030;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.confirm-button > .primary-btn {
    width: 200px;
}

.timer > svg {
    z-index: 1031;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
}

.city-question > h2 {
    margin: 0;
}

#city-title {
    color: #0080FF
}

.background-circle {
    fill: #0080FF;
}

.foreground-circle {
    fill: black;
}

.end-circle {
    fill: red;
}


@media (max-width: 767px) {
    #map.finished {
        width: 95%;
        height: 140px;
    }
    .timer > svg {
        top: 50px;
    }
    .city-question {
        width: 90%;
        text-align: center;
        top: 100px;
    }
    .confirm-button {
        bottom: 30px;
    }
}


@media (min-width: 768px) {
    #map.finished {
        width: 75%;
        height: 300px;
    }
}