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 {
    text-align: center;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
    line-height: 2vw;
    list-style-type: disc;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 1vh 2vw 3vh 5vw;
}

#section-landing b {
    font-weight: bold;
}

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

#section-maps #map-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#section-maps div {
    width: 30%;
    margin-bottom: 2vh;
}

#section-maps iframe {
    width: 100%;
}

#section-maps h3 {
    font-family: 'Inconsolata';
    font-size: 1.5vw;
    color: #333333;
    font-weight: bold;
    margin: 1vh 0 1vh 0;
}

#section-maps h4 {
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
    margin: 1vh 0 1vh 0;
}

#section-maps a {
    color: #333333;
    text-decoration: underline;
}

@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 ul {
        font-size: 4vw;
        line-height: 6vw;
    }

    #section-maps div {
        width: 100%;
        margin-bottom: 5vh;
    }

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

    #section-maps h4 {
        font-size: 5vw;
    }
    
}