main {
    flex: 1; /* This pushes the footer to the bottom */
    font-size: 1.2em;
    margin-left:  10%;
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Arrange children vertically */
    justify-content: left;
}

.background-image {
    background:
        url('../images/background.png') no-repeat center center,
        var(--color_bg);
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh; /* Make the div cover the full viewport height */
    box-sizing: border-box; /* Include padding and border in height calculations */
}


main .main-text {
    background-color: var(--color_bg);
    opacity: 0.9;
    text-align: justify;
    font-weight: 500;
    max-width: 30%;
    margin: 0;
}

@media (max-width: 700px) {
    main {
        /* flex: 1; /* This pushes the footer to the bottom */
        font-size: 1.2em;
        margin-left:  10%;
        margin-top: 0%;
        display: flex; /* Enable Flexbox */
        flex-direction: column; /* Arrange children vertically */
        justify-content: center;
    }
    main .main-text {
        color: #101010;
        text-align: justify;
        max-width: 88.8%;
    }
    .background-image {
        background: 
            url('../images/background.png') no-repeat 85% center,
            var(--color_bg);
        background-size: 225% auto;
    }
}
