

#pfp {
  display: block;
  width: 350px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  justify-content: center;
  margin: 0 auto;
  width: 350px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  min-width: none;
}

.section-title {
  font-family: 'Cardo', serif;
  font-weight: 700;
  font-size: 30px;
  color: #222;
  letter-spacing: 0.01em;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
  flex-grow: 1; 
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-text {
    display: inline;
    max-width: 600px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    font-family: Liberation Mono;
    color: #0d0d0d;
    padding: 10px;
}

.about-content > .about-text h1 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 2.5rem;
}
.about-content > .about-text p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
}


.social-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Liberation Mono;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: #0d0d0d;
    border: 2px solid #0d0d0d;
    padding: 6px 12px;
    -radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.social-buttons a:hover {
  background-color: #0d0d0d;
  color: white;
}
.social-buttons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 768px) {
  
}

@media (min-width: 1024px) {
    #pfp {
      min-width: 350px;
    }

    .about-content {
        justify-content: center;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto auto;
        width: 75%;
        padding-top: 50px;
        padding-bottom: 325px;
    }

    .about-text {
      text-align: left;
    }

    .about-gallery {
      width: 50%;
      justify-content: center;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: auto auto;
    }

    .about-gallery-image-2 {
      grid-row: 1 / 3;
      width: auto;
      max-width: 500px;
    }

    .about-gallery-image {
      width: auto;
      max-width: 500px;
    }
}