body {
    margin: 0;
    background-color: rgb(246, 246, 236);
    color: rgba(0, 0, 0, 0.98);
    
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    /*font-family: "Red Hat Display", sans-serif;*/
    font-family: "Radley", serif;
    /*font-family: "Cormorant SC", serif;*/
    /*text-transform: uppercase;*/
 }
  
 .header {
    font-family: "Red Hat Display", sans-serif;
    position: absolute;
    color: rgba(4, 30, 87, 0.98);
    top: 16px;
    left: 20px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.6ch;
    text-decoration: none;
}

.about {
    font-family: "Red Hat Display", sans-serif;
    position: absolute;
    color: rgba(4, 30, 87, 0.98);
    top: 16px;
    right: 20px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.6ch;
    text-decoration: none;
}
  
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px 40px; /* Top, sides, bottom padding */
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    font-style: normal;
    padding: 0 20px;
    font-weight: 500;
}

.about-text h2 {
    margin-bottom: 1rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 1px;
    font-size:50px;
  }

  .image-row {
    position: relative;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .nav-arrow {
    position: fixed;               /* 👈 Fixed to viewport */
    top: 50%;                      /* Vertically center */
    transform: translateY(-50%);   /* Correct centering */
    font-size: 2rem;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    user-select: none;
    z-index: 1000;
    padding: 0;
  }
  
.nav-arrow.left {
    left: 10px;
}
  
.nav-arrow.right {
    right: 10px;
}

.image-wrapper-portrait {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-wrapper-landscape {
    display: grid;
    place-items: center;
    min-height: 60vh;
    width: 100%;
}
  
.art-image {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
}

.metadata {
    position: absolute;
    bottom: 20px;
    margin-top: 20px;
    font-style: regular;
    line-height: 1.6;
    font-weight: 500;
    font-size: 110%;
}

.metadata .artist {
    color: inherit;
}

.metadata .title {
    color:inherit
}

.metadata .medium-size {
    color: inherit;
    font-size: 85%;
}

.nav-arrow {
    color: inherit;
    text-decoration: none;
}

.nav-arrow:hover {
    color: inherit;
    text-decoration: none;
}