body {
  background-color: #555;
}

.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  padding-top: 4rem;
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.header-left,
.header-right {
  flex: 1;
  text-align: center;
}

.header-left a {
  color: #fff;
}

.header-left h1 {
  font-size: 2rem;
  margin: 0;
}

@media (max-width: 543px) {
  .header-left h1 {
    font-size: 1.5rem;
  }
}

.header-right .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.header-right .menu li a {
  text-decoration: none;
  font-weight: bold;
}

.header-right .menu li a:hover {
  text-decoration: underline;
}

/* Projects Section Styling */
.introduction {
  padding: 16px;
  padding-top: 104px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.introduction h3 {
  font-weight: normal;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #444;
  border-radius: 8px;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-align: center;
  color: inherit;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.item:hover {
  transform: translateY(-5px);
  background-color: #333;
}

.inactive:hover {
  transform: unset;
  background-color: #444;
  cursor: default;
}

.item-icon {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  flex-shrink: 0;
}

.mars-icon {
  background-image: url("/assets/images/terraformingmars.png");
  background-size: 100px 100px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 20px;
}

.item-content {
  flex-grow: 1;
}

.item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.item p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #eee;
}

.thumbnail-text {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}