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: 15vh 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 a {
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: black;
    font-weight: bold;
    line-height: 2vw;
}

#section-landing #row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3vh;
}

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

#section-landing #link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#section-landing #link-row a {
    cursor: pointer;
    font-family: 'Inconsolata';
    font-size: 2vw;
    color: #333333;
    
    border: 1px solid #333333;
    padding: 1vh 2vw;
    margin: 0 1vw 5vh 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 a {
        font-size: 4vw;
        line-height: 7vw;
    }

    #section-landing #row h1 {
        font-size: 5vw;
    }

    #section-landing #link-row a {
        font-size: 5vw;
    }
    
}