html {
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #D6BD98;
    background-color: #1A3636;
}

nav {
    display: none;
    background-color: #40534C;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 5%;
    font-size: larger;
}

a {
    color: white;
    text-decoration: none;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-left: .5%;
    top: 50%;
    position: absolute;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

nav li {
    display: inline;
    border: 2pt solid #bbb;
}

li :hover {
    background-color: #2e3c37;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(98vh, auto);
    column-gap: 1%;
    row-gap: .5%;
}

.map-section {
    display: none;
    border: 2pt solid #677D6A;
    width: auto;
    padding: 0.5%;
}

.project-link {
    background-color: #D6BD98;
    margin: 1%;
    padding: .5%;
    border: 2pt solid #1A3636;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

img {
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}

.pdf {
    width: 100%;
    height: 100vh;
}

#transit-map{
    height: 98vh;
    background-color: gainsboro;
}

/* .map-section ul{
    list-style-type: none;
} */

#brief-intro {
    display: block;
}