html, body {
    margin: 0;
    padding: 0;
}

#locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: fit-content;
    max-height: 25vh;
    overflow-y: scroll;
}

#locations h2, p {
    width: fit-content;
}

#map {
    width: 100vw;
    z-index: 0;
    flex-grow: 1;
}

#reset {
    display: none;
}

#container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

#done, #reset {
    position: absolute;
    width: 100px;
    height: 50px;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: royalblue;
    z-index: 50;

    border-radius: 20px;
    border-style: none;

    display: flex;
    justify-content: center;
    align-items: center;
}

#done span, #reset span {
    display: block;
    font-family: Tahoma, sans-serif;
    font-size: 20pt;
    color: white;
    padding: 0;
    margin: 0;
}

#locations * {
    font-family: Tahoma, sans-serif;
    font-size: 15pt;
}

#locations hr {
    width: 90vw;
    margin: 0;
    padding: 0;
}