* {
  font-family: Arial, sans-serif;
  margin: 0;
  box-sizing: border-box;
  color: white;
  cursor: default;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #483263 0%, #16213e 100%);
  background-attachment: fixed;
}

.menu-container {
  display: flex;
  height: 60px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 8px;
  gap: 24px;
  border-bottom: 2px solid white;
}

.menu-container button {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 18px;
}
.menu-container button:hover {
  border-color: rgb(0, 100, 255);
  cursor: pointer;
}

.category-dropdown h2 {
  font-size: 24px;
  color: white;
  text-decoration: underline;
}

.category-dropdown:hover h2 {
  text-decoration: underline;
  text-decoration-color: rgb(0, 100, 255);
}
.category-dropdown:hover .dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.category-dropdown:hover .dropdown-placeholder {
  display: flex;
}
.dropdown-placeholder {
  display: none;
  position: absolute;
  padding: 12px 60px;
}
.dropdown-list {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: 24px;
  border: 2px solid white;
  border-radius: 6px;
  padding: 8px 12px;
}
.dropdown-list .project {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 8px;
  border: 2px solid white;
  border-radius: 6px;
}
.dropdown-list .project:hover {
  cursor: pointer;
  border-color: rgb(0, 100, 255);
}
.dropdown-list h3:hover {
  cursor: pointer;
  border-color: rgb(0, 100, 255);
}
