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

body {
    background-color: rgb(245, 238, 224);
    font-family: Georgia, serif;
    color: #3a3a3a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

.header-image {
    width: 180px;
    height: auto;
    opacity: 0.8;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.poem {
    font-size: 16px;
    line-height: 1.8;
}

.poem p {
    margin-bottom: 20px;
}

.author {
    margin-top: 30px;
    font-style: italic;
    color: #666;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .poem {
        font-size: 14px;
    }
}