@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal
}
.displayout{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-self: space-between;
    align-self: space-between;
    top: 0;
    z-index: 200;
    height: 100% auto;
    width: 50%;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #00002166;
    color: #fff;
}
.control {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    
    header button {
        margin: 10px 0 0 10px;
    };
}

html,

body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#map {
    z-index: 0;
    height: 100%;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 30%;
    background-color: #555;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.footer-debug {
    position: flex;
    bottom: 0;
    left: 0;
    right: inherit;
    z-index: 1000;
    height:40vh;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);    
}
