html, body {
    height: 100%;
    margin: 0;
}

body {
   font-family: 'Audiowide', sans-serif;
    padding: 0;
    background-color: #ccc;
    background-image: url('https://www.wyldelabs.com/images/Backgrounds/Background3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Lock the background image in place */
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh; /* Ensures minimum height covers full viewport */
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #fff;
    color: black;
    padding: 20px 40px;
    text-align: left;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.title-left, .title-right {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    flex: 1;
    text-align: center;
}

.logo {
    width: 300px;
    height: auto;
    margin: 0 20px;
}

main {
    position: relative;
    min-height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    height: auto;
    max-height: 80%;
    width: 80%;
    max-width: 80%;
    border-radius: 5px;
    text-align: left;
    font-size: 16px; /* Default font size for smaller devices */
}

/* Increase font size for tablets */
@media (min-width: 600px) {
    .content-container {
        font-size: 18px;
    }
}

/* Increase font size for desktops */
@media (min-width: 1024px) {
    .content-container {
        font-size: 20px;
    }
}

/* Further increase for large screens */
@media (min-width: 1200px) {
    .content-container {
        font-size: 22px;
    }
}

.content-container p {
    padding-left: 20px; /* Applies padding only to paragraphs within .content-container */
}

.content-container img {
    width: 50%;
    height: auto;
    margin-right: 20px;
    float: left;
   margin-bottom: 20px;
}

img.float-right {
    float: right;
    margin-left: 0px; /* Left margin for spacing when image is floated right */
}

@media (min-width: 768px) {
    .content-container img {
        width: 250px;
        max-width: 100%;
    }
    .content-container p {
        margin-left: 0;
    }
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    opacity: 0.8;
}

.footer-links a {
    color: #fff; /* This ensures links are also white */
    margin: 0 10px; /* Adds horizontal space between the links */
    text-decoration: none; /* No underline on the links */
}

.footer-links a:hover {
    text-decoration: underline; /* Underline on hover for better user experience */
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    background-color: rgba(51, 51, 51, 0.7);
    color: black;
    position: relative;
}

.nav-list {
    list-style-type: none;
    display: flex;
    padding-left: 0px; /* Additional padding to avoid overlap */
}

.nav-item {
    width: 100%;
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
      font-size: 24px; /* Adjust this value as needed */
}

.nav-link:hover {
  color: #33cc00; /* Changes text color to green on hover */
}

/* Default hidden state for hamburger menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
}

.line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
}

@media (max-width: 768px) {
    
      .hamburger-menu {
    display: block;
    position: absolute;
    left: 10;
    top: 0;
    z-index: 1001;
  }
    
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        background-color: rgba(51, 51, 51, 0.7);
        border: 1px solid #000;
        top: 18px;
        right: 0;
        z-index: 1001; /* Ensure it is above other elements */
    }

    .nav-list.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
    }
    
    .nav-link {
    font-size: 32px; /* Adjust this value as needed */
    display: block;
    text-align: left;
    padding: 0px 20px;
    width: 100%;
    margin: 5px 0;
  }
    
}
/* Hiding the hamburger menu on larger screens */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}