/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #2c2c2c;
  text-align: center;
}

/* Container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

.logo {
  height: 50px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #8c53ff;
}

/* Main Content */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px); /* Adjust height to account for header and footer */
  padding-top: 80px; /* Offset for fixed header */
}

.main-content img {
  max-width: 90%;
  height: auto;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: #333;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
