/* style.css */

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #fff; /* Updated title color */
    font-size: 32px; /* Adjust font size as needed */
    font-weight: bold;
    text-transform: uppercase;
}

/* Main Styles */
main {
    padding: 20px;
}

h2, h3, h4 {
    color: #333;
    font-weight: bold;
}

p {
    color: #666;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Mobile Styles */
@media only screen and (max-width: 480px) {
    /* Add mobile-specific styles here */
}

/* Desktop Styles */
@media only screen and (min-width: 481px) {
    /* Add desktop-specific styles here */
}

