body {
    background-color: #a18c16;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    width: 100%;
    background-color: #333;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: white;
}
header img {
    width: 30%;
    height: 200px;
}

/* Navigation */
nav {
    font-family: Geneva, Verdana, sans-serif;
    height: 106px;
    margin-bottom: 0;
    margin-right: 25%;
    float: right;
}
nav ul {
    gap: 15px;
    list-style: none;
    display: flex;
}
nav li {
    text-decoration: none;
    font-size: 25px;
    margin: 30px;
    color: white;
}
nav li:hover {
     font-style: oblique 50deg;
     color: gray;
     background-color: yellow;
}
 
/* Navigation Links*/
a {
    font-size: 20px;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
a:hover {
    color: #c40c84;
    text-decoration: underline;
}
a:visited {
    color: #c40c84;
}

/*  Main */
main {
    flex-grow: 1;
    height: 650px;
    font-family: Geneva, Verdana, sans-serif;
    background-color: #ede1ab;
    height: 90%;
}

/* Main-banner */
.main-banner {
    width: 100%;
    height: 80px;
    background-color: #8B6914;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-align: center;
}
.main-banner p {
    width: 25%;
    height: 150px;
}

/* Content Sections */
.content-section {
    width: 100%;
    height: 470px;
    text-align: center;
    margin-bottom: 15px;
}
.section-banner {
    width: 100%;
    height: 45%;
    padding: 5px;
}

/* Content images */
.section-banner img {
    width: 25%;
    height: 90%;
    border-radius: 10px;
    /*object-fit: contain;*/ 
}
.content-img-1 {
    float: left;
    margin-left: 15px;
}
.content-img-2 {
    float: right;
    margin-right: 50px;
}

/* Content text */
.content-secton p {
    margin-right: 20px;
    padding: 20px;
    line-height: 1.3;
    text-align: justify;
}

/* Footer 
footer {
    position: relative;
    text-align: center;
    padding: 10px;
    background-color: #8B6914;
    color: white;
    font-size: 16px;
}
footer p {
    margin: 0;
    color: white;
    font-size: 16px;
}*/

/* resized styles for index webpage */
/* Content Sections */
.content-section-main {
    width: 100%;
    height: 270px;
    color: blue;
    text-align: center;
    margin-bottom: 15px;
}
.section-banner-main {
    width: 100%;
    height: 25%;
    padding: 5px;
}
/* Content text */
.content-secton-main p {
    padding: 20px;
    color: blue;
    line-height: 1.5;
    text-align: justify;
}

/* Footer */
footer{
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #8B6914;
}
#footer-media {
    display: flex;
    gap: 10px; /* Space between */
}

/* General Styles for separate elements */
h1 {
    font-size: 20px;
    font-family: Arial, sans-serif;
    color: #000000;
}
h2, h4, h5, h6 {
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #000000;
}
h3 {
    font-size: 35px;
    font-weight: bold;
    color: #CC0000;
}

p {
    font-size: 17px;
    font-family: Arial, sans-serif;
    color: #000000;
}


