body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

header h1 {
    font-size: 2em;
    margin: 0;
}

header h2 {
    font-size: 1.2em;
    color: #666;
    margin: 10px 0;
}

.author {
    color: #999;
}

.intro, .prompt, .comments, .examples {
    margin: 20px 0;
}

.prompt h3 {
    background-color: #f8f8f8;
    padding: 10px;
    border-left: 4px solid #333;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-set {
    width: 32%;
    margin: 10px 0;
    text-align: center;
}

.image-set img {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.image-set p {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.comments {
    display: flex;
    justify-content: space-between;
}

.comment {
    width: 30%;
    background-color: #ffe6e6;
    border: 1px solid #ff6666;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.examples {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.example {
    width: 30%;
    margin: 10px 0;
    text-align: center;
}

.example img {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.example p {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}
