/* Keep footer nice-looking */
@media (max-width: 1000px) {
    .footer p {
        text-align: center;
        line-height: 1.5em;
    }

    .footer .credits {
        float: none;
        white-space: nowrap;
        text-align: center;
    }

    .footer > a {
        text-decoration: none;
    }
}

/*Prevent contact table from going out of screen*/
@media (max-width: 1000px) {
    .facebookLong {
        display: none;
    }
    .facebookShort {
        display: block;
    }

    .contactInfo > span {
        text-align: left;
        width: 700px;
    }
}

/* remove map on smaller screens */
@media (max-height: 405px) {
    #map {
        display: none;
    }

    .verhuur a {
        display: none;
    }

    .contact {
        height: 100%;
        background-color: rgba(50, 50, 50, 0.9);
    }

    .contact .sectionText {
        background-color: initial;
    }

    .footer {
        position: relative;
    }
}

@media (max-width: 1000px) {
    .sectionText > * {
        width: 90%;
    }
}

/* Section text width across browser widths */
@media (min-width: 1000px) {
    .sectionText > * {
        width: 800px;
    }
}

/* Section text width across browser widths */
@media (min-width: 1100px) {
    .sectionText > * {
        width: 900px;
    }
}

/* Section text width across browser widths */
@media (min-width: 1200px) {
    .sectionText > * {
        width: 1000px;
    }
}

/* Smaller logo */
@media (max-width: 1000px) {
    #logo {
        top: 5%;
        max-width: 80%;
    }
}

/* Menu unstick on smaller screens */
@media (max-width: 1000px) {
    #downArrow {
        display: inline-block;

        width: 10vw;
        height: 10vw;
        border-right: 5px solid white;
        border-top: 5px solid white;
        border-radius: 2px;
        transform: rotate(135deg);
    }

    #menu {
        display: flex;
        flex-direction: row;
        box-sizing: border-box;
        padding: 0;
        justify-content: space-around;
        max-height: 50px;
    }

    #menu .menuItem {
        margin-left: 0;
        margin-right: 0;
        padding-left: 5px;
        padding-right: 5px;
        white-space: nowrap;
        box-sizing: border-box;
    }
}

/* Increase font-size on smaller screens */
@media (max-width: 1000px) {
    body {
        font-size: 4vmin;
    }
}