/* Reset default margin and padding */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    
}




header {
    background-color: #fff;
    color: #666e78;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: teal;
    text-decoration: none;
    font-weight: bold;
    padding-top: 12.5px;
}

nav a:hover {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-top: 12.5px;
}

a {
    color: yellow;
    text-decoration: none;
    font-weight: bold;
    padding-top: 12.5px;
}
a:hover {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-top: 12.5px;
}







main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

article {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

article h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

article p {
    margin-bottom: 10px;
}

article img {
    max-width: 100%;
    height: auto;
    border: 2px solid black;
    border-radius: 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header, nav ul {
        text-align: center;
    }
    
    nav li {
        display: block;
        margin-bottom: 10px;
    }
    
    main {
        padding: 10px;
    }
}
