body {
    font-family: Palatino Linotype,
    Book Antiqua,
    Palatino,
    serif;
    font-size: 1em;
    line-height: 1.5em;
    padding-top: 0.5em;
}

header nav {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.8);
}

h1, h2, h3, h4, h5 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

blockquote {
    font-size: 1.2em;
}

a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: uppercase;
}

a:hover {
  text-decoration:underline;
  color: #920609;
}

.navbar-collapse-icon,
.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand {
    color: #920609;
    text-decoration: none;
}

.horwitz-color {
    color: #920609;
}

.brand-name {
    font-size: 1.44em;
    line-height: 1.35em;
    letter-spacing: .26em;
    font-weight: 400;
    align-content: center;
}

.brand-title {
    text-transform: none;
    font-size: 0.76em;
    letter-spacing: .69em;
    padding-left: 0.1em;
    align-content: center;
}

.nav-header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.navbar-brand {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #920609;
    padding: .7em 0 .9em 0;
}

.navbar-expand-lg {
    padding-bottom:0;
}

ul.navbar-nav {
    margin: 0;
}

.top-menu {
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: .25em 0;
    color: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, .15);
}

.navbar-nav {
    display: flex;
    justify-content: space-between;
}

.nav-link {
    text-transform: uppercase;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: .4em;
}

.nav-link.active {
    text-decoration: underline;
}

.nav-link:hover {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}

main {
    margin-top: 1.5em;
    margin-bottom: 2em;
    padding: 1.5 em;
}

div.main-wrapper {
    margin-top: 4em;
}

div.start-page-container {
    margin-top: -4em;
}

div.start-page-container img {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 0;
}

footer {
    margin-top: 1.5em;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.7);
    padding-bottom: 2em;
}

footer a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

footer a:hover {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
}

ul.language-picker {
    display: block;
    text-align: right;
    margin: 0;
}

ul.language-picker li {
    display: inline
}

ul.language-picker li:first-child a {
    border: none;
}

.language-picker a {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-size: 0.85em;
    padding: 0 0.5em;
    border-left: 1px solid rgba(0, 0, 0, 0.7);
    line-height: .8em;
}

.language-picker a:hover {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: underline;
}

ul.footer-menu {
    margin: 0;
    display: flex;
    justify-content: center;
}

ul.footer-menu li a {
    padding: 0 0.5em;
    border-left: 1px solid rgba(0, 0, 0, 0.7);
    line-height: 0.8em;
    display: inline-block;
}

ul.footer-menu li:first-child a {
    border: none;
}

.profile-page table tbody tr:first-child td:first-child {
    padding-right: 1.5em;
}

.gray-50 {
    background-color: rgba(46, 46, 46, 0.49);
}

.gray-100 {
    background-color: #2e2e2e;
}

div.project-page ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.3em;
    padding: 0;
}

div.project-page ul li {
    display: block;
    width: 31.5%;
    min-width: 19em;
    aspect-ratio: 1/.618;
}

div.project-item {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    background-size: cover; 
    background-position: center center;
}

a.project-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.project-link:hover div.project-hover {
    display: flex;
    opacity: 1;
}

div.project-hover {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    font-size: 1.2em;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    opacity: 0;
}

.project-link:hover div.project-hover {
    display: flex;
    opacity: 1;
}

.toggle-button-container {
    position: absolute;
    margin: .5em 0 0 .75em;
    padding-top: 1em;
}

.menu-toggle {
    color: #920609;
    font-size: 1.8em;
    padding: 0;
}

.mobile-menu {
}

.gray-100 {
    background-color: #2e2e2e;
}

.fade {
    animation: fadeIn 400ms ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 1em;
        line-height: 1.3em;
    }

    .top-menu .navbar-nav {
        flex-direction: row;
    }

    li.nav-item {
        text-align: center;
    }

    .contact-page table tbody tr:first-child td:first-child {
        padding-right: 1.5em;
        padding-left: 1em;
    }

    .contact-page table tbody {
        vertical-align: top;
    }

    div.project-page ul li {
        display: block;
        width: 100%;
        aspect-ratio: 1/.618;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: .85em;
        line-height: 1.3em;
    }

    .brand-name {
        font-size: 1.44em;
        line-height: 1.35em;
        letter-spacing: .25em;
        font-weight: 500;
    }

    .brand-title {
        text-transform: none;
        font-size: 0.76em;
        letter-spacing: .69em;
        padding-left: 0.15em;
    }


    div.main-wrapper {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    ul.language-picker {
        font-size: 1.35em;
    }

    ul.navbar-nav li {
        font-size: 1.35em;
        text-align: left;
        padding-bottom: .5em;
    }

    div.project-page ul {
        display: flex;
        justify-content: center;
    }

    div.project-hover {
        font-size: 1.5em;
        letter-spacing: .09em;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: .7em;
        line-height: 1.3em;
    }
}



