<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Autumn Days Content</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #FAF3E0; /* A light autumn-themed background color */
}
.autumn-content {
padding: 20px;
background-color: #FFF5E1; /* A slight off-white background color for contrast */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* A subtle shadow for depth */
text-align: center;
}
.autumn-content span {
color: #D35400; /* A nice autumn color for the hashtag */
font-weight: bold;
}
</style>
</head>
<body>
<div class="autumn-content">
Embracing the magic of fall, one sip and page at a time! 🍂☕📖
<br>
How are you spending your <span>#AutumnDays</span>?
</div>
</body>
</html>