body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #a3d9b6;
    font-family: 'Roboto', sans-serif;
    position: relative;
    text-align: center;
}

.container {
    max-width: 90%;
}

.logo img {
    max-width: 750px;
    width: 100%;
    height: auto;
}

.slogan {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.bottom-bar {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px); /* Account for left and right padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.email {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.instagram-container a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from link */
}

.instagram-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.instagram-handle {
    font-size: 14px;
    color: #333;
}

.developed-by {
    font-size: 14px;
    color: #333;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
    .logo img {
        max-width: 70%;
    }

    .bottom-bar {
        flex-direction: column;
        align-items: center;
        width: auto;
        padding: 0;
    }

    .instagram-container {
        bottom: 40px; /* Adjusted for mobile */
        flex-direction: column;
        align-items: center;
    }

    .instagram-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .email, .instagram-handle, .developed-by {
        font-size: 12px;
    }
}
