html {
    height: 100%;
}

body {
    background-color: #2f3533;
    height: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem;
    height: 100%;
}

.container .item {
    width: 48%;
    /* height: 44%; */
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid rgba(151,151,151, 1);
    opacity: 1;
    background-color: rgba(255,255,255, 1);
}

.container .item .cover {
    width: 100%;
    height: 200px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.container .item .info {
    /* width: 49%; */
    /* height: 100%; */
    /* float: right; */
    padding-bottom: 1rem;
}

.container .item .info .title {
    opacity: 1;
    color: rgba(0,0,0,1);
    font-family: "Helvetica-Bold";
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;

    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container .item .info .address {
    opacity: 1;
    color: rgba(0,0,0,1);
    font-family: "Helvetica";
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 25px;
}

.container .item .info .tel {
    opacity: 1;
    color: rgba(0,0,0,1);
    font-family: "Helvetica";
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
    display: block;
    margin-bottom: 1rem;
}

@media screen and (min-width: 480px) {
    html {
        height: 100%;
    }

    body {
        background-color: #2f3533;
        overflow: hidden;
        height: 100%;
    }
    .container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 10px;
        height: 100%;
    }

    .container .item {
        width: 49%;
        height: 44%;
        margin-bottom: 10px;
        border-radius: 8px;
        border: 2px solid rgba(151,151,151, 1);
        opacity: 1;
        background-color: rgba(255,255,255, 1);
    }

    .container .item .cover {
        width: 50%;
        height: 100%;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        border-radius: 8px;
    }

    .container .item .info {
        width: 49%;
        height: 100%;
        float: right;
    }

    .container .item .info .title {
        opacity: 1;
        color: rgba(0,0,0,1);
        font-family: "Helvetica-Bold";
        font-size: 21px;
        font-weight: 700;
        font-style: normal;
        letter-spacing: 0px;
        text-align: left;
    
        padding: 50px 20px 0 20px;
    }

    .container .item .info .address {
        opacity: 1;
        color: rgba(0,0,0,1);
        font-family: "Helvetica";
        font-size: 16px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0px;
        text-align: left;
        padding-left: 20px;
        padding-top: 20px;
    }
    
    .container .item .info .tel {
        opacity: 1;
        color: rgba(0,0,0,1);
        font-family: "Helvetica";
        font-size: 16px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0px;
        text-align: left;
        padding-left: 20px;
        display: block;
        margin-bottom: 15px;
    }
}

.container .item .info .btn {
    border-radius: 8px;
    opacity: 1;
    display: block;
    width: 140px;
    opacity: 1;
    color: rgba(0,0,0,1);
    font-family: "Helvetica-Bold";
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 auto;
    height: 40px;
    vertical-align: middle;
    line-height: 40px;
}

.container .item .info .waitlist_btn {
    background-color: rgba(231,199,126, 1);
    margin: 0 auto .4rem;
}

.container .item .info .reserve_btn {
    color: rgba(255,255,255,1);
    background-color: #000;
}

.container .footer{
    opacity: 1;
    color: rgba(255,255,255,1);
    font-family: "Helvetica";
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: center;

    width: 100%;
}