* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

header h1 {
    margin-bottom: 0.5rem;
}

.sermons-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sermon-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.sermon-item:hover {
    transform: translateY(-2px);
}

.sermon-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sermon-title {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.sermon-title:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #3498db;
    color: white;
    margin-top: 2rem;
}
