@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;700&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Wix Madefor Display", sans-serif;
    background: #282828;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
}

nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 150px;
    border-right: #a89984 1px solid;
}

nav a {
    color: #a89984;
    padding: 0.5rem;
    text-align: right;
    text-decoration: none;
    border-bottom: #a89984 1px solid;
    transition: background 0.3s;
}
nav a:hover {
    background: #444;
}

main {
    margin-left: 150px;
    min-height: 100%;
    font-size: 20px;
}

main h1 {
    color: #a89984;
    font-weight: 700;
    min-height: 148px;
    font-size: 100px;
    border-bottom: #a89984 1px solid;
    text-align: center;
    padding-top: 10px;
    margin-bottom: 60px;
}

main h3 {
    color: #a89984;
    font-weight: 500;
    min-height: 74px;
    font-size: 48px;
    border-bottom: #a89984 1px solid;
    text-align: center;
    padding-top: 6px;
    margin-bottom: 60px;
}

main p {
    color: #ebdbb2;
    text-indent: 4em;
    width: 740px;
    line-height: 1.8;
}

.text {
    padding-bottom: 100px;
}

.text.center > * {
    margin: 0 auto;
}

.small {
    width: 600px;
}

.review-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.review-box {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.review-box img {
    min-height: 0;
    height: 100%;
    width: auto;
}

.cited {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 150px;
    color: #a89984;
    padding: 0.5rem;
    text-align: right;
    text-decoration: none;
    border-top: #a89984 1px solid;
    border-right: #a89984 1px solid;
    transition: background 0.3s;
}

.cite {
    display: block;
    text-indent: -4em;
    margin-bottom: 30px !important;
    color: #ebdbb2;
    margin: 0 auto;
    width: 740px;
}

.title {
    text-indent: 0;
    text-align: center;
}

.title.more {
    padding-top: 70px;
    width: 900px;
}
.title.even.more {
    color: #928374;
    padding-top: 70px;
    width: 900px;
    font-weight: 700;
}
