body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

a:hover {
  cursor: pointer;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: #333;
}

p,
ul {
  color: #555;
}

ul {
  margin-left: 20px;
}

.prominent {
  color: #ff4500; /* Keep this for emphasizing key information */
  font-weight: bold;
}

/* Styling for the menu */
menu {
  list-style-type: none;
  margin: 15px;
  padding: 7px;
  text-align: left;
  border-bottom: 1px solid #d8d8d8;
  opacity: 0.93;
  display: flex;
  color: #353535;
}

menu li {
  display: inline-block;
  margin-right: 10px;
  padding-bottom: 7px;
}

menu a {
  font-size: smaller;
  text-decoration: none;
  color: #292828;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 5px 5px 0px rgb(15, 15, 15);
  border: 1px solid black;
  transition: border-color 0.1s ease, box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0.9;
}

menu a:hover {
  box-shadow: 0px 0px 0px rgb(171, 62, 62);
  border-color: transparent;
  transform: translateX(3px) translateY(4px);
}

#login-button {
  margin-left: auto;
  color: #353535;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Footer styles */
.footer {
  text-align: center;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.footer-title {
  font-weight: bold;
}

.social-links a {
  margin-left: 10px;
  font-size: 24px;
  color: #353535;
}
