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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

main {
    flex: 1;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #999;
}

/* Poetry page specific styles */
.poetry-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.poem {
    max-width: 600px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 30px;
}

.poem-image {
    max-width: 150px;
    flex-shrink: 0;
    opacity: 0.8;
}

.poem-text {
    border-left: 2px solid #000;
    padding-left: 30px;
    flex: 1;
}

@media (max-width: 768px) {
    .poem {
        flex-direction: column-reverse;
        align-items: center;
    }

    .poem-image {
        max-width: 200px;
        margin-top: 40px;
    }
}

.poem p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 300;
}
