/* CSS Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Body Styles */

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
}


/* Header Styles */

header {
    background-color: #c0392b;
    color: #fff;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}


/* Main Styles */

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

section p {
    margin-bottom: 20px;
}


/* Footer Styles */

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}


/* Media Queries */

@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }
    main {
        padding: 20px;
    }
    section h2 {
        font-size: 20px;
    }
}