/* Universal styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Body styling */
body {
    background-color: #f4f4f4;
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 40px; 
}

/* Header styling */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Header title */
header h1 {
    margin: 0;
}

.img-container {
    margin-bottom: 20px;
}

.text-container {
    margin-top: 20px; 
    line-height: 1.6; 
}

/* Navigation menu */
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

nav ul li a:hover {
    color: #f0f0f0;
}

/* Main content section styling */
main {
    padding: 20px;
}

/* Section titles */
h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Section paragraphs */
section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Styling for the unordered lists */
ul {
    list-style: inside; 
    margin-bottom: 20px; 
}

/* Regular bullet points for the top-level list items */
ul > li {
    font-size: 1.1rem; 
    margin-bottom: 10px; 
    list-style-type: disc; 
}

/* Indentation for nested lists */
ul ul {
    margin-left: 20px; 
}

/* Different bullet points for the nested list items */
ul ul > li {
    list-style-type: circle; 
    font-size: 1rem; 
}


/* Styling for the figure and image */
figure {
    text-align: center;
    margin-bottom: 20px;
}

img {
    display: block;  
    margin-left: auto; 
    margin-right: auto; 
}

figure img {
    width: 80%;   
    max-width: 600px;  
    height: auto;
}

/* Caption for the figure */
figcaption {
    color: #1f0c0c; 
    font-size: 0.9rem;
    font-style: italic; 
    text-align: center; 
    margin-top: 5px; 
}


hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* White text for the footer */
footer .white {
    color: white;
}
