body {
    margin: 0;
    padding: 0;
    font-family: Impact, sans-serif;
    color: black;
    display: flex;
    height: 100vh;
  }

  #main {
    background-color: #FF3131;
    width: 25%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    box-sizing: border-box;
  }

  #links {
    display: flex;
    flex-direction:column;
    gap: 5px;
  }

  #links a {
    text-decoration: none;
    color: black;
    font-size: 25px;
    transition: color 0.3s;
  }

  #links a:hover {
    color: #AF2424;
  }

  #instagram {
    gap: 10px;
    display: flex;
  }

  #instagram img {
    width: 25px;
    height: 25px;
    cursor: pointer;
  }

  #links a.active {
    color: #AF2424;
  }

  #top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  }   

  #top img {
    margin-bottom: 10px;
  }

  #extras {
    width: 75%;
    background-color: black;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  #top-image {
    position: relative;
    height: 40vh;
    min-height: 250px;
  }

  #top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #about-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    min-height: auto;
    width: 350px;
  }
  
  #gallery {
    padding: 20px;
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  #gallery img,
  #gallery video,
  #gallery iframe {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  #gallery img:hover,
  #gallery video:hover,
  #gallery iframe:hover {
    transform: scale(1.05);
    transition: 0.3s;
  }

  @media (min-width: 2560px) {
    #main {
      padding: 50px;
    }
    #links a {
      font-size: 70px;
    }
    #instagram {
      gap: 20px;
    }
    #instagram img {
      width: 60px;
      height: 60px;
    }
    #extras {
      padding-bottom: 50px;
    }
    #top-image {
      height: 50%;
      min-height: 250px;
    }
    #about-overlay {
      width: 45%;
    }
    #gallery {
      padding: 40px;
      padding-top: 100px;
      max-width: 2400px;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 40px;
    }
    #gallery img,
    #gallery video,
    #gallery iframe {
      width: 100%;
      height: 400px;
      border-radius: 10px;
    }
  }

  @media (max-width: 1440px) {
    #links a {
      font-size: 40px;
    }
    #instagram img {
      width: 40px;
      height: 40px;
    }
    #about-overlay {
      width: 55%;
    }
    #gallery {
      padding-top: 50px;
    }
  }
  
  @media (max-width: 1024px) {
    #links a {
      font-size: 25px;
    }
    #instagram img {
      width: 30px;
      height: 30px;
    }
  }

  @media (max-width: 768px) {
    body {
      flex-direction: column;
      height: auto;
    }
    #main {
      width: 100%;
      min-height: auto;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 15px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    #top {
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }
    #top img {
      height: 22px;
      margin-bottom: 0;
    }
    #links {
      flex-direction: row;
      gap: 15px;
    }
    #links a {
      font-size: 14px;
    }
    #instagram {
      gap: 5px;
    }
    #instagram img {
      width: 15px;
      height: 15px;
    }
    #extras {
      width: 100%;
    }
    #top-image {
      height: 30vh;
      min-height: 180px;
    }
  }

  @media (max-width: 425px) {
    #main {
      gap: 15px;
    }
    #links {
      align-content: center;
      flex-direction: row;
      gap: 10px;
    }
    #links a {
      font-size: 16px;
    }
    #top img {
      height: 25px;
    }
    #instagram {
      align-items: center;
      gap: 5px;
    }
    #about-overlay {
      width: 65%;
    }
  }

  @media (max-width: 375px) {
    #main {
      gap: 15px;
    }
    #links {
      align-content: center;
      flex-direction: row;
      gap: 5px;
    }
    #links a {
      font-size: 14px;
    }
    #main {
      padding: 10px;
    }
    #content {
      padding: 15px;
      padding-top: 35px;
    }
    #content p {
      font-size: 12px;
    }
    #about-overlay {
      width: 65%;
    }
  }

  @media (max-width: 320px) {
    #instagram img {
      display: none;
    }
  }