body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header, .footer {
    background-color: #22dd88; /* Adjust the color as needed */
    height: 10%;
    width: 100%;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    max-width: 60%; /* Adjust based on your logo's size */
    max-height: 100px; /* Adjust to maintain aspect ratio */
    margin: 0 auto; /* Center logo horizontally */
}

.tagline {
    margin-top: 50px; /* Space between logo and tagline */
    font-size: 1.5em; /* Adjust based on your preference */
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .logo {
        max-width: 80%;
        max-height: 60px; /* Adjust for smaller devices */
    }

    .tagline {
        font-size: 1em; /* Smaller text on smaller devices */
    }
}