.profile-pic {
    width: 200px;
    /* height: 200px; */
    /* border-radius: 50%; */
    border: 2px solid black;
    margin: 0 auto;
    float: left;
    /* display: block; */
}

.bio-and-pic {
    display: flex;
    gap: 20px;

    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.bio {
    width: 700px;
    background-color: white;
    border: 2px solid black;
    max-width: 90%;
    padding: 10px;
    /* margin: 20px; */
    font-size: 21px;
    margin: 0 auto;
    margin-top: 20px;
}


.media-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  
  .media-section {
    margin: 0 auto;
    margin-top: 20px;
    width: 800px;
    max-width: calc(95% - 40px);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border: 2px solid black;
  }
  
    /* .media-title {
      font-size: 32px;
      width: fit-content;
      padding: 10px;
      border-radius: 100%;
      font-weight: bold;
      background-color: antiquewhite;
      text-align: center;
      margin: 0;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 20px;
    } */

    .media-title{
      background: var(--bg-2);
      width: 110px;
      height: 110px;
      position: relative;
      text-align: center;
      z-index: 9999;
      margin: 0 auto;
      margin-bottom: 40px;
      margin-top: 20px;
    }

    .media-title h2 {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
    }

    .media-title:before,
    .media-title:after {
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.542));
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 110px;
      width: 110px;
      background: var(--bg-2);
      z-index: -1;
    }
    .media-title:before {
      transform: rotate(30deg);
    }
    .media-title:after {
      transform: rotate(60deg);
    }
  
  .media-item {
    text-align: center;
  }
  
  .media-item img,
  .media-item video {
    max-width: 100%;
    height: auto;
    /* border: 2px solid black; */
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .file-download {
    background-color: var(--bg-2);
    padding: 10px;
    border: 2px solid black;
    text-decoration: none;
    color: black;
  }
  
  .file-download span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold;  
  }

  .file-download:hover {
    background-color: var(--hover);
  }

  .press-quote {
    background-color: white;
    width: 500px;
    padding: 20px;
    border: 2px solid black;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 21px;
    text-align: left;
  }

  .press-quote a {
    background-color: var(--accent);
    color: white;
    border: 2px solid black;
    width: fit-content;
    padding: 10px;
  }

  .press-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  main {
    margin-bottom: 50px;
  }