body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

h1 {
    font-size: 5rem;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

p {
    font-size: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}
