:root {
    --primary-color:  rgb(98, 48, 25);
    --secondary-color:sienna;
    --background-color: #FCF5E5;
}

body {
    font-family: "EB Garamond", Georgia, serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
    max-width: 1300px;
    margin: 0 auto;
    padding: 2em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.exhibition-header {
    text-align: left;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.exhibition-info {
    font-size: 0.7rem;
    color: var(--secondary-color);
}

.exhibition-text{
    max-width: 50%;
    margin-right: 3%;
}

.footnote-marker {
    font-size: 0.8rem;
    vertical-align: super;
    color: var(--accent-color);
}
.writing{
    font-weight: 80;
    font-size: 0.9em;
}
p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.indent {
    text-indent: 2rem;
}

.centered {
    text-align: center;
}
a,.artist{
    color: rgb(98, 48, 25);
    font-size: large;
}


.italic {
    font-style: italic;
}

ul{
  list-style-type: none;
  margin: 2px;
  padding: 0;
  font-size: 80%;
  line-height: 1.3;

}

.chinese-characters {
    font-family: "Noto Serif SC", serif;
    font-size: 1rem;
}

.right{
    text-align: right;
}

.margined{
    margin-left: 10%;
}

.braille {
    font-family: monospace;
}

.footnote-content{
    position: fixed;
    left: 60%;
    max-width: 30vw;
    min-width: 20px;
    font-size: 80%;
    height: 60vw;
    display: flex;
}

.details {
    border-top:1px solid red;
    text-wrap: wrap;
    height: 100%;
}

.Bibliography {
    border-top:1px solid red;
    text-wrap: wrap;
    height: 100%;
}

.image {
    margin-top: 20px;
    max-height: 36vw;
    width: 100%;
    padding: 6px;
    overflow-y: hidden;
}

img {
    max-width: 100%;
    max-height: 25vw;
}

/*Highlights*/
.orange:hover {
    background-color: #f6b26b;
    text-decoration: none;
    }
.blue:hover{
    background-color: #a4c2f4;
    text-decoration: none;
}

.green:hover{
    background-color: #93c47d;
    text-decoration: none;
}

