colleen stephanie clary
This is a paragraph! Here's how you make a link: Neocities.
Here's how you can make bold and italic text.
Here's how you can add an image:
Here's how to make a list:
- First thing
- Second thing
- Third thing
body {
margin: 0;
padding: 0;
}
.container {
width: 100%;
height: 100vh; /* Full viewport height */
background: #94E3F4; /* Sky color background */
overflow: hidden; /* Hide excess image outside the container */
/* Use your own cloud image URL */
background-image: url('https://s15.postimg.cc/5pi28m9t7/clouds-2.jpg');
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedBackground 150s linear infinite; /* Adjust duration to change speed */
}
@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 100% 0; } /* Moves the background horizontally */
}
To learn more HTML/CSS, check out these tutorials!