/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 20px;
}

/* Header styling */
header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
}

header h1 {
    font-size: 2.5rem;
}

/* Navigation styling */
nav {
    text-align: center;
    margin: 20px 0;
}

nav a {
    text-decoration: none;
    color: #007bff;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Main content styling */
main {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Section styling */
section {
    margin: 20px 0;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007bff;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007bff;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.responsive-image {
    width: 80%; /* Shrinks images to 80% of their container width */
    max-width: 400px; /* Sets a maximum size for large screens */
}

/* Audio Player Styling */
audio {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

/* Responsive iframe for YouTube video */
iframe {
    width: 100%;
    max-width: 600px;
    height: 340px;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Bold text */
.highlight {
    font-weight: bold;
    font-size: 1.2em;
    color: #007bff
}
.highlight2 {
    font-weight: bold;
    font-size: 1.35em;
    color: black
}

/* centered text */
.center {
    text-align: center;
}
/* Grid container */
.grid-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px; 
    align-items: center; 
}

.grid-container img {
    width: 350px; 
    height: auto; 
    border-radius: 5px;
}


/* no bullet points */
ul {
    list-style-type: none;
}

/* italic text */
.italic {
    font-style: italic;
}
/* text alignment */
.right {
    text-align: right;
}