/* Header Styles */
body{ 
	background-color: black;
}
.Headerdiv {
    text-align: center;
    background: white;
    color: black;
    font-size: 30px;
    width: 100%;
    height: 25%;
    overflow: hidden;
	border-radius: 25px;
}

iframe {
    height: auto;
    overflow: hidden;
}

/* Header Menu Styles */
.headerul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

p {
    font-size: 20px;
    line-height: 1.5;
	color: white;
}

.story {
    text-indent: 50px;
}

ul {
    text-align: center;
    list-style-type: none;
    padding: 0;
}

li {
    font-size: 24px;
    padding: 0 10px;
}

/* General Text Styles */
h1 {
    text-align: center;
    font-size: 30px;
	color: white;
}

/* Main Content Area */
.parentdivhz {
    border: 1px solid black;
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	margin-left: 10%;
	margin-right: 10%;
	border-radius: 15px;
}

/* Side by Side Layout */
.sidebyside {
    display: block;
    border: 2px solid grey;
    padding: 1rem;
    margin: 10px;
    box-sizing: border-box;
	border-radius: 10px;
}

/* Navigation Specific Styles */
.navigation {
    flex: 0 0 20%;
    min-width: 150px;

}

.navigation iframe {
    width: 100%;
    height: calc(100vh - 100px);
    border: none;
}

/* Content Area Styles */
.content {
    flex: 1;
    text-align: left;
    overflow-y: auto;
    min-width: 60%;
}

/* Image Styles */
img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer Styles */
.footerdiv {
    text-align: center;
    background: white;
    color: black;
    font-size: 30px;
    width: 100%;
}

/* Logo Styles */
.logo {
    height: 60px;
    width: auto;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .navigation, .content {
        flex: 0 0 100%;
    }
    
    .navigation iframe {
        height: auto;
    }
    
    h1 {
        font-size: 24px;
    }
    
    p {
        font-size: 16px;
    }
    
    li {
        font-size: 18px;
        padding: 10px 20px; /* Larger touch targets */
    }
    
    .parentdivhz {
        flex-direction: column;
		margin-left: 10%;

    }
    
    .sidebyside {
        margin: 10%;
    }
}