body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    text-align: center;
}

main {
    margin-top: 100px;
}

h1 {
    font-size: 42px;
}

h2 {
    margin-bottom: 20px;
}

button,
input {
    display: block;
    width: 260px;
    padding: 12px;
    margin: 12px auto;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    cursor: pointer;
}

input {
    border: 1px solid #999;
}

#message {
    margin-top: 20px;
    font-weight: bold;
}

#game-menu {
    margin-top: 30px;
}

#story-map {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    margin: 0;
    padding: 0;

    background: #7ec850;
    overflow: hidden;
    z-index: 100;
}

#map-canvas {
    display: block;

    width: 100vw;
    height: 100vh;

    margin: 0;
    border: none;

    background: #7ec850;
}

#leave-map-button {
    position: absolute;

    top: 20px;
    left: 20px;

    width: auto;
    margin: 0;

    z-index: 101;
}