

@media (max-width : 1249px){
    .horizontal-flex-container{
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        vertical-align: middle;
        align-items: center;
        background: #ffff;
        padding-top: 30px;
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

}

@media (min-width : 1250px){
    .horizontal-flex-container{
        display: flex;
        flex-flow: row nowrap; ;
        justify-content: center;
        vertical-align: middle;
        align-items: center;
        background: #ffff;
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh; 
        /* height: 100vh;  */
        /* margin-top: 20px; */
    }
    main{
       max-height: 100vh;
    }

}


h2 {
    font-size: 20px;
    color: #000;
    font-weight: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    font-family: 'Fira', sans-serif;
    margin-bottom: 50px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Remove red color for visited links */
a:visited {
    color: inherit;
} 

html, body {
    margin: 0;
}


.img{
    margin-left : 20px;
    margin-right : 20px;
    margin-top : 5px;
    /* height: auto; */
    max-height: 395px;
    height: 40vh;
    /* cursor: pointer; */
}

.image-name{
    text-align: center;
    margin: 10px;
    font-family: 'Fira', sans-serif;

}

.ordering{
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 20px;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #222222;
    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
    background: #fff;
    color: #222222;
}

.ordering:hover{
    border-color: #000000;
    background: #a3a3a3;
}


.vertical-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffff;
    height: 100%;
}

