/* style.css */

body {
    font-family: 'Arial', sans-serif; /* Clean, modern font */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark gray text */
}

.container {
    width: 80%;
    max-width: 800px; /* Limits the width on larger screens */
    margin: 40px auto; /* Centers the content and adds space */
    padding: 30px;
    background-color: #fff; /* White background for the content */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
}

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

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #4285f4; /* A touch of color (Google Blue) */
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

main {
    margin-bottom: 30px;
}

.intro, .contact {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #4285f4;
    border-bottom: 2px solid #4285f4; /* Underline with the same color */
    padding-bottom: 5px;
    display: inline-block; /* Makes the border only as wide as the text */
}

a {
    color: #4285f4;
    text-decoration: none; /* Removes the default underline */
}

a:hover {
    text-decoration: underline; /* Adds underline on hover for clarity */
}

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd; /* Separates the footer */
    color: #777;
    font-size: 0.9em;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}