html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

h1 {
    color: #ffffff;
    padding-left: 10%;
}

p {
    color: #ffffff;
    padding-left: 10%;
}

/* Map */
.map-container {
    z-index: 1;
    width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    display: none;
}

.menu {
    text-align: center;
}

.overlay-markers {
    position: absolute;
    z-index: 2;
    width: 100%;
}

.marker {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.marker:hover {
    width: 28px;
    height: 28px;
    border: 2px solid #ffffff;
}

.compass {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    z-index: 4;
}
