/* style.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

header, footer {
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

img {
    max-width: 100%;
    height: auto;
}

/* Temporary placeholder for the video background */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}