Poem - "The Soul's Journey"
In the silent night, where dreams arise,
The moon whispers secrets, hidden from our eyes.
Waves of time crash upon the shore,
As the soul yearns, seeking something more.
Through the stars, the path is bright,
Guided by the glow of a distant light.
The journey's long, but full of grace,
Each step revealing a sacred place.
box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
font-size: 1.5rem;
line-height: 1.8;
text-align: center;
animation: slideIn 3s ease-out;
}
.poem p {
margin: 10px 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* Footer styles */
footer {
position: absolute;
bottom: 20px;
text-align: center;
font-size: 1.2rem;
color: #fff;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
animation: fadeIn 4s ease-out;
}
/* Header animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Poem text animation */
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive design */
@media (max-width: 768px) {
header {
font-size: 2rem;
}
.poem {
font-size: 1.2rem;
width: 95%;
}
footer {
font-size: 1rem;
}
}
In the silent night, where dreams arise,
The moon whispers secrets, hidden from our eyes.
Waves of time crash upon the shore,
As the soul yearns, seeking something more.
Through the stars, the path is bright,
Guided by the glow of a distant light.
The journey's long, but full of grace,
Each step revealing a sacred place.