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

#section-landing {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 2vh 25vw;
    
    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 ul {
    list-style-type: circle;
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 #didyouknow {
    font-weight: bold;
}

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

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

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

#section-landing #card-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#section-landing #card-container div {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
    margin: 1.5vh 0;
    transition: 0.3s;
}

#section-landing #card-container div a {
    display: block;
    width: 24vw;
    height: 0;
    padding-bottom: 100%;
    background-color: #F8F8F8;
    background-position: center;
    background-size: cover;
    position: relative;
    box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.2 );
}

#section-landing #card-container div h3 {
    font-family: 'Inconsolata';
    font-size: 2vw;
    color: #ffffff;
    padding: 2vh 0;
    
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: rgba( 0, 0, 0, 0.8 );
    
    text-align: center;
}

#section-landing #card-container div #long-title {
    font-size: 1.5vw;
}

#section-landing #card-container div:hover {
    transform: scale( 1.1 );
}

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

    #section-landing #card-container div a {
        width: 90vw;
    }

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

    #section-landing #card-container div #long-title {
        font-size: 5vw;
    }
    
}