body {
    font-family: "Merriweather";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #e6e6e6;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
    padding-top: 60px;
}
::-webkit-scrollbar {
    width: 12px;     
    height: 12px;             
  }
  
  ::-webkit-scrollbar-track {
    background: #f0f0f0;   
    border-radius: 6px;       
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #888;    
    border-radius: 6px;       
    border: 3px solid #f0f0f0; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #c9b458;   
  }

  header {
    position: fixed; /* Changed from static to fixed to pin the header to the top */
    top: 0;
    left: 0;
    padding: 10px 10px;
    background-color: #2C363D;
    color: white;
    width: 100%;
    z-index: 1001; /* Ensure it stays above the confetti (z-index: 1000) */
}

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    max-width: 1050px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: inherit;
}

.color-blind-mode .header {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.footer {
    background-color: #2C363D;
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 38px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 200px;
}

.footer-brand p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 380px;
    text-align: left;
}

.footer-brand p a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-brand p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
}

.footer-column ul li a:hover {
    color: #eee;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #FFFFFF33;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 18px;
    color: #e0e0e0;
}

.social-icons a {
    margin-left: 5px;
}

.social-icons img {
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 0.7;
}
.left-footer-img {
    position: absolute;
    left: 0;
    top: 0;
}
 .right-footer-img{
    position: absolute;
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0px;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .container {
     padding: 5px;
    }
    .social-icons {
        margin-top: 10px;
    }
}

@media screen and (max-width: 320px) {
    .footer-brand h3 {
        font-size: 30px;
    }
    .footer-content{
        gap: 0;
    }
    .footer-brand p {
        font-size: 16px;
    }

    .footer-column h4 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

}