

.textContainer { 
    text-align: center; /* Center text inside the div */
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    font-size: 20px; /* Default size for computers */
  
  }
  
    
  
  .pictureContainer {
    text-align: center;
    width: 100%;
    max-width: 333px; /* 1000px / 3 to make it three times smaller */
    margin: 0 auto; /* Center horizontally */
    padding: 0;
    box-sizing: border-box;
}

/* Make it responsive for mobile */
@media screen and (max-width: 768px) {
    .pictureContainer {
        max-width: 80%; /* Adjust size for smaller screens */
    }
}


.nav-bar2 {
    background-color: rgb(252, 255, 160);
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0; /* Adds space around items */
}



.nav-bar {
    background-color: black;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0; /* Adds space around items */
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap into multiple rows */
    justify-content: center;
    gap: 10px; /* Space between items */
}

.nav-item {
    margin: 0;
    max-width: calc(50% - 10px); /* Ensures two items per row */
    flex: 1 1 calc(50% - 10px); /* Adjusts to fit two per row */
    text-align: center;
}

.nav-link {
    text-decoration: none;
    color: black;
    background-color: white;
    border: 1px solid black; /* Thinner border */
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: rgb(255, 255, 118);
    color: black;
}




.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.youtube-container {
    text-align: center; 
    width: 100%;
    max-width: 1000px; /* Matches .pictureContainer */
    margin: 0 auto; /* Centers it */  
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* Maintains 16:9 aspect ratio */
    height: 0; /* Ensures proper scaling */
    border: 2px solid black; /* Creates a black border */

  }
 


/* Centering and spacing for homepage buttons */
.button-container-homepage {
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;
  }
  
  /* Base button styles */
  .button-container-homepage button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.8rem;
    border: 1px solid black;
    border-radius: 8px;
    background-color: transparent;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
    min-width: 140px;
  }
  
  .button-container-homepage button:hover {
    background-color: red;
    color: white;
  }
  
  /* Responsive tweaks for smaller screens */
  @media (max-width: 480px) {
    .button-container-homepage button {
      padding: 4px 8px;
      font-size: 1rem;
      min-width: 80px;
    }
  }
  
  @media (max-width: 320px) {
    .button-container-homepage button {
      padding: 2px 6px;
      font-size: 0.8rem;
      min-width: 60px;
    }
  }
  
  /* Centering container for download button */
  .button-container {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  
  /* Medium-sized download button */
  .download-button {
    display: inline-block;
    font-size: 20px; /* Medium font size */
    padding: 14px 28px; /* Balanced padding */
    text-decoration: none;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
  }
  
  .download-button:hover {
    background-color: #28a745;
    transform: scale(1.05);
  }
  
  /* Responsive download button */
  @media (max-width: 480px) {
    .download-button {
      font-size: 16px;
      padding: 10px 20px;
    }
  }
  
  