body {
  margin: 0;
  padding: 0;
  font-family: serif;
  background-color: white;
  color: black;
  height: 100vh;
}

.container {
  display: flex;
  min-height: 100vh;
  padding: 40px;
  gap: 50px;
}

.sidebar {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  padding-left: 40px;
}

.sidebar h1 {
  font-family: 'MedievalSharp', cursive;
  font-weight: normal;
  font-size: 3rem;
  margin: 0 0 1em 0;
  text-align: center;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  text-align: center; 
  width: 100%;         
  max-width: 300px;  
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  text-decoration: none;
  color: black;
  font-family: serif;
  font-size: 1.25rem;
}

.sidebar a:hover {
  text-decoration: underline;
}


.image-section {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  width: 100%;
  max-width: 300px;
  height: 533px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.image-wrapper img {
  height: 100%;
  width: auto;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  display: block;
}

 #fixed-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 10000;
 
}


#back-button {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: #222;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 18px;
  font-family: 'MedievalSharp', cursive;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10000;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#back-button:hover {
  opacity: 1;
}

#back-button {
  color: black;
  background: none;
  border: none;
  font-size: 20px;
}

.card p {
  font-family: 'hover', monospace;
}

