body {
  background-color: var(--primary-color);
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.75rem;
  color: white;
  text-align: left;
  font-weight: normal;
  margin-bottom: 8px;
  margin-top: 32px;
}

h3 {
  font-size: 1.25rem;
  color: var(--quinary-color);
  text-align: left;
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 8px;
}

p {
  font-size: 1.125rem;
  margin-bottom: 15px;
  text-align: justify;
  color: white;
}

p,
h2,
h3,
ul,
li {
  width: 100%;
  max-width: 960px;
}

#project-details {
  width: 100%;
  max-width: 960px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#project-details p {
  text-align: center;
  margin-top: 0px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag.react {
  background-color: #429eba;
}

.tag.nodejs {
  background-color: #1f8543;
}

.tag.postgresql {
  background-color: #1e54ab;
}

.tag.vs {
  background-color: #2f99db;
}

.tags-container .tag {
  width: auto;
  display: inline-block;
  text-align: center;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: filter 0.3s ease;
  margin: 0px;
}

.tags-container .tag:hover {
  filter: brightness(1.2);
  cursor: pointer;
}

#content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
}

#project-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 2px solid #666;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
}
