/* styles.css */

/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 20px;
}

/* Heading Style */
.heading-primary {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* centered image style */
.center-image {
    display: block;              /* Makes the image a block element */
    margin: 0 auto;              /* Center horizontally */
    max-width: 100%;             /* Prevents the image from overflowing its container */
    max-height: 900px;
    height: auto;                /* Maintains the image’s aspect ratio */
}

/* Subheading Style */
.subheading {
    font-size: 24px;
    color: #34495e;
    margin: 10px 0;
    font-style: italic;
}

/* Paragraph Style */
.paragraph {
    font-size: 24px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    padding: 10px;
}

/* Highlighted Text */
.highlight {
    background-color: yellow;
    font-weight: bold;
    color: red;
}

/* Custom Button Style */
.button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2980b9;
}
