.column{
    display: flex;
    flex-wrap: wrap;
    width: 42%;
    padding: 0 4% 0 4%;
    height: fit-content;
}
.mediumText{
    font-family: Lato-Bold;
    color: black;
    font-size: 1.3em;
    line-height: 1.5em;
}
main .line{
    width: 100%;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    margin-bottom: 1.5vw;
    margin-top: 1.5vw;
}
h1{
    font-family: Lato-Bold;
    color: black;
    font-size: 1.8em;
    line-height: 1.5em;
    letter-spacing: .15rem;
    padding-top: .5em;
    display: block;
    width: 100%;
}
h2{
    font-family: Lato-Bold;
    color: black;
    font-size: 1em;
    line-height: 1.5em;
    letter-spacing: .1rem;
    display: block;
    width: 100%;
    margin-bottom: 1em;
}

.allergyText{
    font-family: Lato-Light;
    color: black;
    font-size: .8em;
    line-height: 1em;
    margin-left: .5em;
}

.infoText{
    font-family: Lato-Light;
    color: black;
    font-size: 1.25em;
    line-height: 1.3em;
}

.priceText{
    font-family: Lato-Bold;
    color: black;
    font-size: 1.25em;
    line-height: 1.5em;
}
.column p{
    display: block;
}

.topgap{
    margin-top: .5em;
}
.column p:nth-child(odd){
    flex-basis: 75%;
}
.column p:nth-child(even){
    flex-basis: 25%;
    text-align: right;
}
main{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin:0 max(0px, 50% - 600px);
}
.space{
    margin-bottom: 1.5em;
}
.invis{
    color: transparent;
}
@media only screen and (max-width: 1200px) {
    .column{
        width: 90%;
        margin: 0 5% 0 5%;
        padding: 0;
    }
}
@media only screen and (max-width: 1200px) {
       .box .column{
        margin:0;
        padding: 0;
        width: 100%;
    }

    .mobile{
        display: flex;
        flex-wrap: wrap;
    }
    .mobile h1, .mobile h2{
        flex-basis: 93%;
        display: block;
    }
    h1{
        font-size: min(1.8em, 5vw);
    }
    h2{
        font-size: min(1em, 3vw);
    }
    .mediumText{
        font-size: min(1.6em, 4.5vw);
    }
    
    .allergyText{
        font-size: min(.8em, 2.5vw);
    }
    
    .infoText{
        font-size: min(1.25em, 4vw);
    }
    
    .priceText{
        font-size: min(1.25em,3.5vw);
    }
    main .line{
        margin-bottom: 2vh;
        margin-top: 2vh;
    }
    main{
        margin-bottom: 5vh;
    }
}