/* Reset default margins and paddings */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    width: 100%; /* Ensure the header spans the full width */
    padding: 0; /* Remove default padding */
}

main {
    margin: 50px 0;
}

h1 {
    font-size: 2.5rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #555;
}

@keyframes kenburns-bg {
    0% {
        background-size: 120%; /* Slightly zoomed in */
        background-position: center center; /* Start at center */
    }
    50% {
        background-size: 130%; /* Zoom in more */
        background-position: top center; /* Pan slightly upward */
    }
    100% {
        background-size: 120%; /* Return to original zoom level */
        background-position: center center; /* Return to center */
    }
}
