/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Body styles */
body {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    background-color: #f8f8f8;

}

/* Header styles */
header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
}

/* Main styles */
main {
    max-width: 80%;
    margin: 20px auto;
    padding: 0 20px;
}

article {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

blockquote {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

time {
    font-style: italic;
}

.author {
    font-weight: bold;
}

/* Footer styles */
footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}