
body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}

/* Main ================================================================ */
.portfolio-page {
  min-height: 100vh;
  padding: 50px 30px;
}

/* title ================================================================ */
.portfolio-title {
  text-align: center;
  font-size: 60px;
  margin-top: 0;
  margin-bottom: 40px;
}

/* ======================================================================= */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;

  max-width: 1200px;
  margin: 0 auto;
}

/* image/video ======================================================== */
.gallery-item {
  max-width: 350px;

  transition: transform 0.3s ease;
}

/* effect ============================================================= */
.gallery-item:hover {
  transform: scale(1.03);
}

/* shape ============================================================== */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 15px;
}

/* Vid shape ========================================================== */
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 15px;
}

/* ==================================================================== */
.hb {
  display: block;

  max-width: 120px;
  margin: 40px auto 0;
  padding: 10px;

  background-color: #ff61c8;
  border-radius: 30px;

  text-align: center;
  color: white;
  text-decoration: none;
}

/* Phone FIX ============================================================ */
@media (max-width: 600px) {
  .portfolio-title {
    font-size: 42px;
  }

  .gallery-item {
    max-width: 100%;
  }
}