body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.background-image {
    background-image: url('backgroundimage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#navbar {
    /* Navbar styling */
}

.header-content, .info-box {
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent box */
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    text-align: center;
}

.info-box {
    margin: auto;
    max-width: 600px;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px 0;
}
