
section#home{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/img/bg_1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.6);
    padding-bottom: 6rem;

}

#home-content {
    max-width: var(--max-width);
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin-top: 10rem;
    margin-left: 4rem;
    margin-right: 4rem;
}

#home-content-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}


#home-content-text h2 {
    font-size: 4rem;
}

#home-content-text h1 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
    font-size: 7.5rem;
}

#home-content-text p {
    margin-top: 1rem;
}

#home-content-buttons {
    display: flex;
    margin-top: 1rem;
    gap: 3rem;
}


@media (max-width: 768px) {
    #home-content {
        grid-template-columns: 1fr;
        margin-left: 2rem;
        margin-right: 2rem;
        margin-top: 10rem;
    }

    #home-content-text {
        align-items: center;
        margin: 0;
    }


    #home-content-text h1 {
        margin-top: -1rem;
        margin-bottom: -1rem;
    }

    #home-content-text p {
        font-size: 1rem;
        margin-top: 1rem;
        text-align: center;
    }

    #home-content-buttons {
        margin-top: 1.5rem;
        gap: 1rem;
    }
}