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;
}

#content-container ul {
  padding: 0;
  width: 960px;
}

#content-container ul li {
  margin-left: 32px;
  font-size: 1.2rem;
  padding: 8px 0;
  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.unity {
  background-color: #000000;
}

.tag.csharp {
  background-color: #5c2d91;
}

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

.tag.googleplaygames {
  background-color: #2ba953;
}

.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;
}

.download-container {
  margin: 0px;
  padding: 0px;
  text-align: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.download-button:hover {
  background-color: var(--dark-grey);
  transform: translateY(-2px);
}

.download-icon {
  width: 20px;
  height: 20px;
}

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

#switch-sides-video {
  width: 100%;
  height: 100%;
  max-width: 250px;
  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);
}
