html,
body {
    margin: 0;
    background-color: #fd8402;
    font-family: sans-serif;
    font-weight: 500;
}
html {
    padding: 0;
}
address {
    font-style: normal;
}
section {
    padding: .5rem 0;
}
.center_h {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page {
    display: grid;
    grid-template-columns: fit-content(15rem) 1fr;
}
.menu {
    grid-column: 1;
    min-width: 195px;
    padding-top: 139px;
    background: url('images/header_menu.gif') no-repeat top right;

    ol {
        margin: 0;
        padding: 1rem 1rem 0 0;

        li {
            list-style: none;
            padding-bottom: 1rem;

            a {
                color: #000000;
                border-bottom: 2px solid #fd8402;
                text-decoration: none;
            }
            a:hover,
            a:focus,
            a:active {
                color: #ffffff;
                border-bottom-color: #ffffff;
            }
        }
    }
}
.header_image_wrapper {
    grid-column: 2;
    width: 60rem;
    padding-top: 2px;
    background-color: #fd8402;
}
.content {
    padding: 10rem 2rem 2rem 2rem;
    background: #ffffff url('images/header_content.png') no-repeat -7px 0;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
    border-bottom-left-radius: 3rem;

    & > h1 {
        margin: 0 0 4rem 0;
        text-align: center;

        small {
            display: block;
            padding-top: 1rem;
            font-size: 1rem;
        }
    }
}
.portrait {
    padding-right: 2rem;
    padding-bottom: 2rem;
    float: left;
}
.clear {
    clear: both;
}
.info {
    th {
        padding-right: 1rem;
        text-align: left;
        vertical-align: top;
    }
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    li {
        margin: .75rem;
        padding: .75rem;
        list-style: none;
        border: 2px solid #999999;
        vertical-align: middle;
    }
    img {
        max-width: 250px;
        max-height: 250px;
        vertical-align: middle;
    }
}
