body {
    background: #2da18d;
}

#top-banner {
    background-color: black;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top-banner ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

#top-banner a {
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18pt;
    text-decoration: none;
}

#top-banner a:hover {
    color: #f26628;
}

#small-screen-banner {
    background-color: #000000;
    height: 30px;
    display: none; /* Hide initially */
    align-items: center;
    justify-content: center;
}

#small-screen-banner a {
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12pt;
    text-decoration: none;
}

#small-screen-banner a:hover {
    color: #f26628;
}

@media screen and (max-width: 600px) {
    #small-screen-banner {
        display: flex; /* Show when screen width is 600px or less */
    }
}

#main-banner img {
    width: 100%;
    height: auto;
}

#video-container {
    width: 1020px; /* Set the width to the desired value */
    height: 570px; /* Set the height to the desired value */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center horizontally using margin */
    margin-top: 0px; /* Adjust the margin-top value as needed */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

#responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#game-title {
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18pt;
    text-decoration: none;
}

#game-description,
#game-description-2 {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 20pt;
    line-height: 28px;
    letter-spacing: 0px;
    color: white;
    margin-top: 25px;
    padding: 0 10%;
}

#pudd-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.thumbnail {

    width: 395px;
    height: 220px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: auto;
}

/*.thumbnail {
    border: 2px solid white;
    width: 395px;
    padding: 2px;    
    box-sizing: border-box;   
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

#team {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
  }
  
#team img {
    max-width: 100%;
    height: auto;
    margin-top: auto;
  }

#social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

#social-links img {
    width: 100px;
    height: 100px;
}

#copyright {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12pt;
    line-height: 16px;
    color: white;
    margin-top: 35px;
}

#topBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 40px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #f26628; /* Dark background */
    color: white; /* White text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#topBtn:hover {
    background-color: #444; /* Add a dark-grey background on hover */
}

@media screen and (max-width: 600px) {
    #top-banner {
      padding: 15px 0; /* Add vertical padding */
      height: auto; /* Make the height auto */
    }
  
    #top-banner ul {
      flex-direction: column;
      align-items: center;
      gap: 1px;
    }
  }
  
/* Set your aspect ratio */
.video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* for 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.30);  /* Add this line */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
  /* And set the max-width of the parent element */
  .video-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 720px; /* You can adjust this based on your preference */
    margin: 0 auto;
}

.orange-text {
    color: #222034;
  }

@media screen and (max-width: 600px) {
    #top-banner {
        display: none;
    }

    #gallery {
        margin-top: 25px;
        gap: 10px;
    }

    #pudd-image {
        margin-top: 25px;
    }

    #social-links img {
        width: 50px;
        height: 50px;
    }

    #game-title {
        margin-top: 25px;
        font-size: 8pt;
        line-height: 12px; 
    }

    #game-description {
        font-size: 14pt;
        line-height: 20px; 
    }

    #game-description-2 {
        margin-top: 0px;
        font-size: 14pt;
        line-height: 20px; 
    }

    #copyright {
        font-size: 8pt;
        line-height: 12px; 
    }
    
    .translate-button {
        display: none;
    }
      
}