/*body {
    background: hotpink !important;
}*/

{                /* global reset */
    margin: 0;
    padding: 0;
}

/* generic elements */

html, body  {
    color: black;
    font-size: 18px; !important;
    font-family: "Roboto Mono", monospace;
    line-height:  1.4;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #B3E5FC, #A7E0C6, #C0C0C0);
    background-attachment: fixed;
    background-size: cover;
    color: #333; /* Dark gray for readability */

 margin: 0px;
    padding: 0;
}
/* New content layout (Align text left, image right) */
/*.content-wrapper {}*/
    /* Sticky Navigation */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  
    background-color: #1B3A2E; /* Dark forest green */
    padding: 15px 0;
    z-index: 1000;
    margin-bottom: 20px;
    overflow-x: auto; /* Allows horizontal scrolling if needed */
    display: block;
    box-sizing: border-box;
}
/* Navigation List Styles */
.main-navigation ul {
    list-style-type: none;
    margin: 20px 20;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row; /* Ensure horizontal layout */
    flex-wrap: nowrap; /* prevent wrapping */
    justify-content: center; /* Centers the navigation links */
    gap: 45px; /* Spacing between the boxes */
}

.content-wrapper { /* Added missing "." for class fixed duplicate definition */
    display: flex;
    align-items: center;
    justify-content: space-between;
    mx-width: 90%;
    margin: 100px auto 0;
/*    padding: 20px;*/
    padding: 80px 20px 20px;
     }

/* Style for Each Box */
.main-navigation a {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: white; /* White text */
    background-color: #3FC1C9; /* Teal box */
    padding: 15px 10px;
    border-radius: 8px; /* Rounded corners */
    text-decoration: none;
    border: 2px solid #2B7A78; /* Darker teal border */
    transition: all 0.3s ease;
}

/* Hover Effect */
.main-navigation a:hover {
    background-color: #2B7A78; /* Darker teal */
    color: white; /* Keep text white */
    transform: scale(1.05); /* Slightly enlarges the box */


}

.text-container {
    flex: 1;
    max-width: 60%;
    text-align: left; 
}

.image-container img {
    max-width: 40%; 
    height: auto;
}


.index-title {
    margin-top: 30px; 
    margin-bottom: 20px;
    text-align: ; 
    font-size: 40px; 
    padding: 0px;
   
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start; 
    padding: 20px;


}


h1, h2, h3, h4, h5 {
    margin-bottom: 1em;
}

p {
    margin-bottom: 1em;
}

a {
    color: #5547EB;
}

.main-body {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: 100px auto 0;
    padding: 20px;
}

/*.main-body      {
    width: 1200px;
    margin: 100px auto;
    padding: 20px;
/*    border: 5px solid #black;*/  
/*}
.content-container {
    display: flex;
    justify-content: center; /* Centers everything */
/*    align-items: center; /* Aligns vertically */
/*    max-width: 80%; /* Prevents stretching */
/*    margin: 0 auto; /* Centers the section */
/*    gap: 40px; /* Adds spacing between text & image */
}
    

.content-container {
    display: flex;
    justify-content: space-between; /* Centers everything */
    align-items: flex-start; /* Aligns items vertically */
    max-width: 90%; /* Prevents stretching */
    margin: 0 auto; /* Centers the section */
    gap: 50px; /* Adds space between text & image */
    
}
.right-content {
    flex: 1; /* Makes it take up available space */
    max-width: 100%; 
    text-align: left; 
    padding: 25px;
}

.main-image {  /*this removes the line-height beneath the image*/
    display: block;
}   

.content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Centers everything */
/*    align-items: center; /* Aligns items vertically */
    max-width: 100%; /* Prevents stretching */
    margin: 0 auto; /* Centers the section */
    gap: 0px; /* Adds space between text & image */
}

.left-content {
    flex: none; /* Balances it with left-content */
    width: 100%;
    max-width: 800px; /* Ensures it doesn’t get too big */
    text-align: left; /* Centers image if needed */
}

.left-content img {
    width: auto; /* Ensures image fits within container */
    height: auto; /* Maintains aspect ratio */
    max-width: 1900px;
    display: block;
    margin: 0 auto;
    
}


.right-content h3 {
    font-family: "Manrope", sans-serif;
    color: #36453d;
}

.clearfix {   /* place this after elements with float: left and float: right to "clear" layout issues */
    clear: both;
}
    

footer {
    clear: both;
    font-size: 10px;
    color: #333;
}

