body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.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 {
  color: #555;
}
/* 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; /* Include transform in the transition */
  display: inline-block; /* or display: block; */
  opacity: 0.9;
}

menu a:hover {
  box-shadow: 0px 0px 0px rgb(171, 62, 62);
  border-color: transparent;
  transform: translateX(3px) translateY(4px);
}
.menu-category::selection {
  color: rgb(240, 194, 203);
  font-size: 20px;
  background-color: black;
}

#login-button {
  margin-left: auto;
  color: #353535;
}
a {
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Makes the link color the same as the surrounding text */
}

.back-arrow {
  position: absolute;
  top: 100px;
  left: 10px;
  font-size: 24px;
  cursor: pointer;
}
