:root {
    font-family: sans-serif;
    color: black;
    background: whitesmoke;
    width: 100vw;
    height: 100vh;
}

body {
    margin: 0;
}

img {
    object-fit: contain;
    width: auto;
}

.underlined {
    text-decoration: underline;
}

.price {
    font-weight: bold;
    text-align: left;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 16px 0;
    gap: 8px;
    width: 70vw;
}

.gallery img {
    max-height: 300px;
    border: 2px solid black;
    border-radius: 2px;
}

.logo-collection {
    margin: 8px;
    display: flex;
    max-height: 75px;
    width: 100vw;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.logo-collection img {
    max-height: 75px;
}

#pricing h3 {
    display: block;
    width: 100%;
    margin: 8px 0;
}

#pricing li {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    padding-bottom: 4px;
    border-bottom: 1px solid gray;
}

#nav {
    border: 2px solid orange;
    border-left: 0;
    border-right: 0;
    padding: 8px;
    width: 100vw;
    margin-top: 28pt;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav .nav-item{
    color: darkorange;
    font-size: 18pt;
    text-decoration: none;
}

#nav .nav-item:hover {
    color: #db7731;
}

#nav .nav-item:not(:last-child) {
    padding: 0 16px 0 0;
    margin-right: 14px;
    border-right: 2px solid orange;
}

#eye-catcher  * {
    color: #db7731;
    text-align: center;
}

#content {
    padding: 28pt 20vw;
}

#content > div:not(:first-child) {
    margin: 28pt auto;
}

#content > h3 {
    font-style: bold;
}

#content  p{
    font-size: 14pt;
}

#content li:not(:first-child) {
    margin-top: 12pt;
}

#content ul {
    list-style-type: none;
    padding-left: 0;
}

#map {
    width: 60vw;
    height: 50vh;
}

p.highlight {
    color: #db7731;
    font-style: italic;
}

p.footnote {
    font-style: italic;
}

p.subtitle {
    font-size: 14pt;
    font-style: italic;
}

@media (orientation: portrait) {
    :root {
        font-size: 18pt;
    }

    .gallery {
        width: 100vw;
    }

    #map {
        width: 100%;
        height: 30vh;
    }

    #content {
        padding: 28pt 12pt;
    }

    #content p {
        font-size: 18pt;
    }
}
