body {
  font-family: 'Georgia', sans-serif;
  background-color: #3D202D;
  color: #ffd2c6;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1000px;
  padding: 2rem;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 4rem;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.portfolio-box {
  position: relative;
  width: 250px;
  height: 150px;
  background-color: #3D202D;
  color: #ffd2c6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  z-index: 0;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-box.fiberart:hover {
  background-image: url("/QuiltSample_Detail2.jpg");
}

.portfolio-box.illustration:hover {
  background-image: url("/tanith-pattern.jpg");
}

.portfolio-box::before {
  content: "";
  position: absolute;
  background: #3D202D;
  transition: background 0.3s;
  z-index: 1;
}

.portfolio-box:hover::before {
  background: rgba(61, 32, 45, 0.4);
}