@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Roboto+Condensed&display=swap');
body {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: black;
  color: white;
}
header {
  height: 250px;
  background-color: #2e003d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
header h1 {
  margin: 0;
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5em;
  color: gold;
}
header p { margin: 0.5em 0 0; font-size: 1.2em; color: #fff; }
.floating-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255,255,255,0.8);
  z-index: 9999;
}
.side-buttons {
  position: fixed;
  top: 20%;
  left: 20px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}
.side-buttons button {
  margin: 0.5em 0;
  padding: 0.7em 1.5em;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background: #333;
  color: gold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.side-buttons button:hover { background: #555; transform: translateY(-3px); }
.content img {
  margin: 1.5em auto;
  display: block;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 4px 6px 15px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}
.content img:hover { transform: scale(1.03); }
.info-content {
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  padding: 0 1em;
}
.back-button {
  margin: 2em 0;
  padding: 0.7em 1.5em;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background: #333;
  color: gold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.back-button:hover { background: #555; transform: translateY(-3px); }
footer {
  background: #111;
  color: gold;
  padding: 1em;
  text-align: center;
  margin-top: 2em;
}
@media (max-width: 768px) {
  header { height: 180px; }
  header h1 { font-size: 1.8em; }
  header p { font-size: 1em; }
  .side-buttons { top: 10%; left: 10px; }
}