/* Reset some default styling */
body {
    -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background-container {
    z-index: -1;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.background-gradient {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 1) 110%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


p {
    font-size: 20px;
    line-height: 25px;
}


a {
    color: white;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
}

.logo img {
    max-width: 500px;
    width: 100%;
    margin-top: 80px;
    height: auto;
    display: block;
}

footer {
    width: 100%;
    padding: 30px;
    background: transparent;
    position: absolute;
    bottom: 0;
}

.footer-content {
    padding: 20px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}


.left-description {
    width: 100%;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.left-description p {
    font-size: 24px;
    line-height: 30px;
}

.left-description.small-screen {
    display: none;
}

.right-description {
    width: 100%;
    max-width: 500px;
    text-align: left;
    position: relative;
}


.right-description::before {
    content: '';
    position: absolute;
    display: block;
    left: -10px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 2px;
    height: 100%;
    margin-right: 10px;
}


@media screen and (max-width: 700px) {

    body {
        flex-direction: column;
        justify-content: unset;
    }
    
    .background-img {
        object-position: 50% 45%;
    }
    
    .background-gradient {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 1) 100%);
    }
    
    .logo img {
        margin-top: 40px;
    }

    .left-description.big-screen {
        display: none;
    }

    .left-description.small-screen {
        display: block;
        font-size: 26px;
    }

    .left-description ul {
        padding-left: 20px;
    }

    .left-description ul li + li {
        margin-top: 5px;
    }

    .left-description p {
        font-size: 20px;
    }

    footer {
        padding: 0px;
        position: relative;
    }

    .right-description::before {
        content: unset;
    }

    .container {
        padding: 30px;
    }

    p {
        font-size: 16px;
    }

    .footer-content {
        padding: 0px;
        flex-direction: column;
        row-gap: 25px;
    }

}
