body {
  background-color: #f5f0e8;
  color: #333;
  font-family: "MedievalSharp", cursive;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
}

h1 {
  color: #2c3e50;
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 600;
}

h2 {
  color: #34495e;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  border-left: 4px solid #ff6b6b;
  padding-left: 15px;
}

h3 {
  color: #3498db;
  font-size: 22px;
}

img {
  border-radius: 8px;
  margin: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

img:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

ul {
  background-color: white;
  padding: 25px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

li {
  margin: 10px 0;
}

p {
  margin: 15px 0;
}

strong {
  color: #2c3e50;
  font-weight: 600;
}

.center {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

em {
  color: #7f8c8d;
}

.show-item {
    position: relative;
    text-align: center;
}

.hover-info {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-item:hover .hover-info {
    opacity: 1;
}