    body {
      background: #feb171;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
    }

    h1 {
      font: clamp(2rem, 5vw, 4rem)  sans-serif;
      color: white;
      text-align: center;
      margin: 0 0 10px;
    }

    .nav-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      width: 70%; 
      gap: clamp(1rem, 2vw, 2rem);
    }

    .nav-row a {
      font: clamp(1rem, 2vw, 2rem) sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .content {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      width: 70%;
      flex-grow: 1;
      margin: 20px 0 0;
    }

    .content-index {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 70%;
      gap: clamp(1rem, 2vw, 2rem);
      flex-grow: 1;
      margin: 20px 0 0;
    }

    .column {
      display: flex;
      flex-direction: column;
    }
    
    .left-column {
      flex: 1.115;
    }
    
    .right-column {
      flex: 2;
    }  

    .left-column img {
      background: white;
      width: 100%;
      height: auto;
      border: 3px solid white;
      box-sizing: border-box;
    }

    .info-item {
      display: flex;
      align-items: stretch;
      font: bold clamp(0.9rem, 1.3vw, 1.5rem) sans-serif;
      border: 3px solid white;
      margin: 0 0 8px;
      width: 100%;
      box-sizing: border-box;
    }

    .info-label {
      background: white;
      padding: 8px 12px;
    }

    .info-value {
      padding: 8px 12px;
      flex-grow: 1;
    }
    
    .posts-container {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      width: 70%;
      margin: 20px 0 0;
    }

    .post {
      width: 100%;
      border: 3px solid white;
      display: flex;
      flex-direction: column;
    }

    .post-header {
      background-color: white;
      font: bold clamp(0.9rem, 1.3vw, 1.5rem) sans-serif;
      padding: 10px;
    }

    .post-body {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 5px;
    }

    .post-image {
      width: 32%;
      height: auto;
      border: 3px solid white;
    }

    .post-text {
      flex-grow: 1;
      font: clamp(0.9rem, 1.3vw, 1.5rem) sans-serif;
    }
    
    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 ratio */
      height: 0;
      margin: 20px auto;
    }
    
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    footer {
      font: clamp(0.9rem, 1.3vw, 1.5rem) sans-serif;
    }

    @media (max-width: 768px) {
      
    .nav-row {
      width: 100%
    }
      
    .content {
      width: 100%;
    }
      
    .content-index {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .left-column, .right-column {
      width: 100%;
    }
    
    .posts-container {
      width: 100%;
    } 
    
    .post-body {
      flex-direction: column;
        
      align-items: flex-start;
    }

    .post-image {
      width: 100%;
    }
    }