
/* Example body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 20px;
  color: #333;
}

/* Style for the main container */
#main {
  background-color: white;
  max-width: 700px;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Center and style the title */
#title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Center the image container */
#img-div {
  text-align: center;
  margin-bottom: 1rem;
}

/* Style the image caption */
#img-caption {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Style the tribute information text */
#tribute-info {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Style the tribute link */
#tribute-link {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #0056b3;
  text-decoration: none;
  padding: 10px 0;
  border: 2px solid #0056b3;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover and focus states for the link */
#tribute-link:hover,
#tribute-link:focus {
  background-color: #0056b3;
  color: white;
  outline: none;
}
