body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

.centered {
    position: absolute;
    top: 10%; /* Changed from 50% to 10% */
    left: 50%;
    transform: translate(-50%, -10%);
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

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

footer {
    text-align: center;
    position: fixed; /* Changed from absolute to fixed */
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure the footer stays on top of other content */
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

footer a:hover {
    text-decoration: underline;
}

