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

#section-landing {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 2vh 15vw;
    
    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 #container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#section-landing #container div {
    width: 49%;
    margin-bottom: 5vh;
}

#section-landing #container div:hover i {
    transform: scale( 1.05 );
}

#section-landing #container div:hover h3 {
    transform: translateY(10px);
}

#section-landing #container i {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    background-size: cover;
    background-position: center;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.2 );
}

#section-landing #container h3 {
    font-family: 'Inconsolata';
    font-size: 2vw;
    color: #333333;
    margin-top: 1vh;
    transition: 0.3s;
}

@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 #container div {
        width: 100%;
    }

    #section-landing #container h3 {
        font-size: 6vw;
    }
    
}