/* rechthoek achter h1 */
.rechthoekh1 {
  position: relative;
  display: block;
  width: 215px;
  margin: 0 auto;
  padding: 10px 5px;
  z-index: 1;
  text-align: center;
  text-decoration-line:underline;
  text-decoration-style:dotted;
}

.rechthoekh1::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 15px;
  width: 96%;
  height: 60%;
  background-color: #924246;
  z-index: -1;
}

/* rechthoek achter h2 */
.rechthoekh2 {
  position: relative;
  display: block;
  width: 220px;
  margin: 0 auto;
  padding: 10px 5px;
  z-index: 1;
  text-align: center;
}

.center-wrapper {
    text-align: center;
}

.rechthoekh2::before {
  content: "";
  position: absolute;
  top: 24.5px;
  left: 0;
  width: 100%;
  height: 10%;
  background-color: #7C5555;
  z-index: -1;
}


/* puntjes onder h1 */
.puntjes {
    background-color: transparent;
    position: relative;
    top: -40px;
    text-align: center;
    z-index: 5;
    user-select: none;
    font-size: 1.9rem;
}



h2 {
  top: -20px;
}



.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #383838;
  color: #f3f3f3;
  border: 2px solid #7C5555;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  margin: 0 auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.project-image {
  background-color: #383838;
}

.project-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.project-info {
  background-color: #383838;
}

.project-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #383838;
}

.project-info p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #dcdcdc;
  text-align: center;
  background-color: #383838;
}

@media (min-width: 768px) {
  .project-card {
    max-width: 480px;
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .project-card {
    max-width: 600px;
    padding: 24px;
  }

  .project-info h3 {
    font-size: 1.4rem;
  }

  .project-info p {
    font-size: 1.05rem;
  }
}