/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make the container grow to fill available space */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Title styling */
.title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Image container */
.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
.header {
  background-color: #e9ecef;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #555;
}

/* Footer styling */
.footer {
  background-color: #e9ecef;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #555;
}
