@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
#map {
    height: 100vh;
}
#toggleButton {
        position: absolute;
        top: 100px;
        left: 20px;
        z-index: 1000;
        padding: 10px;
        background-color: white;
        border: 1px solid #ccc;
        cursor: pointer;
        margin: 0 auto;
}
.initial-modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}
.initial-modal-content{
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
}
.initial-modal-content h1 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
}
.initial-modal-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 0;
}

#close {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;

    border: 1px solid #888;
    padding: 10px;
    margin-top: 10px;
    background-color: white;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 10px;
}