@import url('style.css');
@import url('header.css');

body {
    min-height: 100vh;
}
.lp-container {
    margin: 0.5rem;
    height: calc(100vh - var(--header-height) - 1rem);

    border-radius: 1rem;
    box-shadow: 0 4px 16px var(--box-shadow-color);
}
.content-container {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}
/* TEXT */
.text-container {

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 5rem;

    font-size: 1.2rem;
    line-height: 1.6;
    
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.6);
}
.img-background {
    background-image: url("../imgs/galeria/g-kep4.jpg");
    background-size: cover;
    background-position: bottom;
}
/* SPACING */
.text-container h1 {
    text-align: center;
    margin-bottom: 2rem;

    color: #fff;
}
.text-container p {
    margin-bottom: 1rem;

    color: #fff;
}
.text-container a {
    margin-top: 1rem;
    color: #AECCF9;
}
.text-container .btn:hover {
    color: #fff;
}
/* IMAGE */
.img-container {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

