body {
    margin: 0;
    padding: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif; /* Apply Open Sans font to the entire body */
}

.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

.slogan {
    color: white;
    font-size: 2rem; /* Adjust the font size as needed */
    font-family: 'Open Sans', sans-serif; /* Apply Open Sans font to the "Coming soon" text */
    margin-top: 20px;
}


@media (max-width: 768px) {
    .container {
        top: 40%;
    }
}
