/** THIS IS THE MEDIA QUERY FOR PHONES IN PORTRAIT MODE */

@media only screen and (min-width: 320px) and (max-width: 479px){
    /** HEADER */
    header {
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: static;
        z-index: 1;
        margin: 0;
    }

    #header-logo, #header-nav {
        flex: 1 1 auto;
        align-self: center;
        display: block;
        float: none;
    }

    #header-logo {
        width: 150px;
    }

    #header-nav {
        margin-top: 15px;
        margin-bottom: 5px;
        width: 100%;
        text-align: left;
    }

    .header-a {
        text-align: center;    
        text-decoration: none;
        padding: 12px;
        color: black;
        border-radius: 0;
        margin: 0;
        transition: 0.3s;
    }

    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    /** MAIN */
    main {
        margin: 0;
    }

    #main-banner {
        height: 200px;
    }

    #main-covid-block {
        width: 90%;
        max-width: 90%;
    }

    .main-header {
        font-size: 36px;
    }

    /** LOVE YOUR FEET */
    #main-intro-container {
        flex-direction: column;
    }

    #main-intro-left, #main-intro-right {
        align-self: center;
        max-width: 90%;
        width: 90%;
    }

    /** OVER MIJ */
    #main-about-container {
        margin-top: 0;
    }
    
    #main-about-right > h1 {
        text-align: center;
        display: block;
        font-size: 36px;
    }
    
    #main-about-left {
        display: none;
    }
    
    #main-about-right {
        max-width: 90%;
        width: 90%;
    }

    /** PRIJSLIJST */
    .main-prices-block {
        min-width: 90%;
        width: 90%;
        padding: 5px;
    }

    .main-prices-left {
        text-align: left;
        max-width: 75%;
    }

    .main-prices-right {
        text-align: right;
        max-width: 25%;
    }

    /** FOOTER */
    footer {
        flex-direction: column;
    }

    #footer-middle {
        display: none;
    }

    #footer-left, #footer-right {
        align-self: center;
        max-width: 100%;
        width: 100%;
    }
}
