@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');


/* Basic reset and typography */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container for the content */
#content {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h2 {
    margin: 0;
    font-family: 'Silkscreen', cursive;
    font-size: 2.5em;
    color: #007acc;
}

/* Navigation bar styling */
nav {
    font-family: 'Silkscreen', cursive;
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    color: #007acc;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #007acc;
    color: white;
}

/* Section content styling */
section {
    line-height: 1.8;
}

section h3 {
    font-size: 1.8em;
    color: #007acc;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    margin: 20px 0;
}

section ul li a {
    color: #007acc;
    text-decoration: none;
    font-weight: bold;
}

section ul li a:hover {
    text-decoration: underline;
}

a:link {
    color: #007acc;
    text-decoration:none; 
    font-weight: bold;
}

a:visited {
    color: #007acc;
    text-decoration:none;
}

a:hover {
    color: #007acc;
    text-decoration: underline;
}

section ul li i {
    color: #666;
    font-size: 0.9em;
}

section ul li p {
    margin: 10px 0;
    color: #666;
}

/* image styling */
section img {
    margin: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

section img:hover {
    transform: scale(1.05);
}

/* footer or contact styling */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

.talk-date {
    font-weight: bold;
    color: #555;
}

.talk-event {
    font-style: italic;
    color: #777;
}

        .art-preview {
            margin: 10px 0;
        }

        .art-preview img {
            max-width: 100px;
            margin-right: 10px;
            vertical-align: middle;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .art-preview img:hover {
            transform: scale(1.05);
        }

        .art-preview a {
            text-decoration: none;
            color: #007acc;
            font-weight: bold;
            vertical-align: middle;
        }

        blockquote {
            margin: 20px 0;
            padding-left: 20px;
            border-left: 5px solid #007acc;
            font-style: italic;
            color: #333;
            text-align: left;  /* Ensure the text is left-aligned */
        }

        blockquote footer {
            display: block;
            margin-top: 5px;
            font-size: 0.9em;
            color: #555;
            text-align: left;  /* Ensure the author name is left-aligned */
            font-style: normal; /* Remove italic from author name if preferred */
        }
