
/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #34495e;
    color: white;
    padding: 1.5em 0;
    text-align: center;
    box-shadow: 0 4px 2px -2px gray;
}

header h1 {
    margin: 0;
    font-size: 3em;
    letter-spacing: 0.08em;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
}

nav ul li a:hover {
    color: #f39c12;
}

section {
    padding: 2em;
}

footer {
    background-color: #34495e;
    color: white;
    padding: 1.5em 0;
    text-align: center;
    margin-top: 2em;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Layout */
@media only screen and (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        gap: 1em;
    }
}

