body {
  background: #020710;
  color: white;
  font-family: monospace;
}
.section-title {
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}
.category-container, .subclass-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.category-box, .subclass-box {
  background: indigo;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  position: relative;
  width: 150px;
}
.subclass-hover {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #4b0082;
  border-radius: 0 0 10px 10px;
}
.category-box:hover .subclass-hover {
  display: block;
}
.project-card {
  display: flex;
  justify-content: space-between;
  background: indigo;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
}
.project-text {
  width: 60%;
}
.project-image img {
  max-width: 200px;
  border-radius: 10px;
}