/* Existing styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', sans-serif;
    background: #F2F8ED;
    background-image: url('background_new3.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: top center; /* Adjusted to ensure top of the image is always visible */
    background-repeat: no-repeat;
    color: #3F562A;
    }
    

/* Header styles */
.header {
    font-size: 14px;
    color: #3F562A;
   /*  position: fixed; */
    max-width: 600px;
    width: 100%;
    top: 15px;
    left: 0;
    text-align: center;
    z-index: 1000;
    padding: 10px 0;
}

/* Container styles */
.container {
    text-align: center;
    color: #3F562A;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 20px;
    box-sizing: border-box;
    background: rgba(242, 248, 237, 0.8); /* Apply transparency here */
    min-height: 800px; /* Example minimum height */


}

h1 {
    font-size: 72px;
    color: #3F562A;
    margin: 0;
    padding-top: 50px;
}

.tagline {
    font-size: 20px;
    color: #3F562A;
    line-height: 1.6;
}

.text, .hidden-content, .news a {
    text-align: left;
    font-size: 16px;
    color: #3F562A;
    line-height: 1.6;
}

.textw {
    text-align: left;
    font-size: 20px;
    color: #CADFB9;
    line-height: 1.6;
}


mark {
	background-color: #F2F8ED;
	color: #3F562A;;
}

.social-links a, .footer p {
    font-size: 29px;
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    margin-top: 50px;
}

a:link, a:visited, a:hover, a:active {
    font-size: 14px;
    color: #3F562A;
    text-decoration: none;
}

.footer p {
    font-size: 11px;
    color: #3F562A;
    margin-top: 25px;
}

/* Responsive styles */
@media (max-width: 450px) {
    .header a, .footer p {
        font-size: 12px;
    }

    h1 {
        font-size: 58px;
    }

    .tagline {
        font-size: 22px;
    }

    .social-links a {
        font-size: 24px;
    }

    .container {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .header a, .footer p {
        font-size: 12px;
    }

    h1 {
        font-size: 39px;
    }

    .tagline {
        font-size: 20px;
    }

    .social-links a {
        font-size: 22px;
    }
}
