body {
  background: var(--bg-color);
  color: white;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projectPage {
  max-width: 1024px;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 36px 36px 36px;
  margin: 48px 48px 48px 48px;
  border-radius: 36px; /* Adjust the value for the desired roundness */
}

h1 {
  color: white;
  font-size: 40px;
  font-weight: 600;
  padding: 15px;
  text-align: center;
}

h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
}

h3 {
  color: white;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

p {
  color: white;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}
