/* styles.css */

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #333;
}

main {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 10px;
}

section p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
}

footer {
    text-align: center;
    margin-top: 20px;
}

footer p {
    font-size: 0.9em;
    color: #777;
}

h2 img{
    float: left;
}