body {
    width: 100%;
    height: 100%;
}

#section-landing {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 2vh 20vw;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#section-landing h1 {
    text-align: center;
    font-family: 'Inconsolata';
    font-size: 3vw;
    color: #333333;
    line-height: 4vw;
    
    margin: 5vh 0 5vh 0;
}

#section-landing p {
    text-align: center;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
    line-height: 2vw;
    
    margin: 3vh 0 3vh 0;
    text-align: justify;
}

#section-landing img {
    margin-top: 3vh;
    width: 100%;
    box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.2 );
}

#section-landing #row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#section-landing .row-item {
    width: 48%;
}

#section-landing .row-item h1 {
    text-align: left;
    font-size: 2vw;
    line-height: 3vw;
    
    margin: 3vh 0 1vh 0;
}

#section-landing .row-item p {
    margin-top: 1vh;
}

#section-landing #row img {
    width: 48%;
}

#section-landing .button {
    text-align: center;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    background-color: #333333;
    color: #ffffff;
    line-height: 2vw;

    margin-top: 1vh;
    padding: 1vh 1vw;
}

@media only screen and (max-width: 1024px) {

    #section-landing {
        padding: 2vh 5vw;
    }

    #section-landing h1 {
        font-size: 7vw;
        line-height: 10vw;

        margin: 5vh 0 3vh 0;
    }

    #section-landing p {
        font-size: 4vw;
        line-height: 7vw;
    }

    #section-landing .row-item {
        width: 100%;
    }
    
    #section-landing .row-item h1 {
        font-size: 5vw;
        line-height: 7vw;
    }
    
    #section-landing .row-item p {
        font-size: 4vw;
        line-height: 7vw;
    }

    #section-landing .button {
        font-size: 4vw;
        line-height: 7vw;
    
        margin-top: 1vh;
        padding: 1vh 5vw;
    }
    
}