html {
    background-color: #0d0f11;
}


body {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100vw;
  }
  
  /* Main container holding the left and right columns */
  .portfolio-container {
    display: flex;
    flex-direction: row;
    padding: 30px;
    margin-top: 73.5px;
    min-height: 100vh;
    max-height: none;
    overflow-y: auto;
  }
  
  /* Left Column Styling */
  .left-column {
    flex: 2;
    margin-right: 30px;
  }
  
  .video-embed {
    margin-bottom: 30px;
    
  }

  .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 41.89%; /* aspect ratio */
  overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .preview-images {
    display: flex;
    flex-direction: column;
  }
  
  .preview-images img {
    width: 100%;
    margin-bottom: 30px;
  }
  
  /* Right Column Styling */
  .right-column {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
  }
  
  .video-title {
    margin-top: 120px;
    color: #a07857;
    font-family: neue_kabelbold;
    font-size: 25px;
  }
  
  .credits p {
    color: white;
    font-family: neue_kabellight;
    font-size: 20px;
  }



/* Sticky Effect */
  .sticky {
    position: fixed;
    right: 30px;
    top: 30px;
  }
  



  /* Mobile Layout: Viewport 960px or less */
@media (max-width: 960px) {
    .portfolio-container {
      flex-direction: column;
      align-items: center;
    }
  
    /* Ensure both columns take full width */
    .left-column, .right-column {
      width: 100%;
      margin: 0;
    }
  
    /* Center the video embed */
    .video-embed .video-container {
      width: 100%;
      margin-bottom: 30px;
    }
  
  
    /* Center the preview images */
    .preview-images {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .preview-images img {
      width: auto;
      max-width: 100%;
      margin-bottom: 30px;
    }
  
    /* Place text at the bottom */
    .right-column {
      margin-top: 30px;
      text-align: right;
    }

    .video-title {
        margin-top: 0;
    }

    .sticky {
        position: relative;
        right: auto;
        top: auto;
      }
  }