@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 150px 4fr 1fr;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
}

.content {
    grid-column: 2;
    grid-row: 2;
}

#map_title {
    font-weight: normal;
    font-size: 3em;
}

#map_desc {
    font-weight: lighter;
    font-size: 1.5em;
    margin-bottom: 10px;
}

#map {
    height: 600px;
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 8px;
}

.form-group {
    margin-top: 10px;
}

label, input, select, option {
    margin-bottom: 5px;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 1px;
    border: 1px solid black;
}
