```html
Camp Songwriter
```
CSS (styles.css):
```css
@keyframes slideIn {
0% {
transform: translateX(-100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
.text {
font-size: 2em;
font-family: Arial, sans-serif;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: slideIn 2s ease-out;
}