html,
body {
    height: 100%;
    margin: 0;
    font-family: Calibri, Roboto, Helvetica Neue, sans-serif;
}

h1 {
    text-transform: uppercase;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #456;
}

.login {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.content-login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 750px;
    border: none;
    background-color: #fbfdfe;
    margin: auto;
    padding: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 1px 1px 14px 3px rgba(0, 0, 0, 0.75);
}

.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 40%;
    min-width: 300px;
    max-width: 750px;
    border: none;
    background-color: #fbfdfe;
    margin: auto;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 1px 1px 14px 3px rgba(0, 0, 0, 0.75);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image {
    vertical-align: top;
    max-width: 100%;
    max-height: 300px;
}

.description {
    padding: 25px 0;
    text-align: center;
}

.button {
    font-family: inherit;
    background-color: #fbfdfe;
    border-radius: 5px;
    align-self: end;
    border: none;
    color: black;
    padding: 12px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
}

.button:hover {
    background-color: #ddd;
}

.popup-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}

.leaflet-popup-content {
    width: auto !important;
    min-width: 240px;
}

.popup-content {
    width: 450px !important;
}

.popup-content-img {
    margin: 18px 0;
}

.header {
    font-size: 1.3em;
}

.center-content {
    text-align: center;
}
