* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    height: 1020px;
    width: 480px;

}

header {
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 10px;
    background-color: whitesmoke;
    text-align: center;
    margin: 4px;
}

h2 {
    color: goldenrod;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    background-color: whitesmoke;
    min-height: 30%;
}

.cartitems {
    padding: 10px;
    margin: 10px;
    text-align: center;
    border: 0.5px solid gray;
    border-radius: 5px;
}

.shopBanner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.188), rgba(0, 0, 0, 0.5)), url("https://ustoyou.netlify.app/PiTiMon/Kamar.jpg");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 10px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 8px;
    background-color: goldenrod;
    color: white;
    border-radius: 5px;
}


.shopBanner>h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.shopBanner>h3 {
    font-size: smaller;
    font-family: Arial, Helvetica, sans-serif;
}

.menuItems {
    margin: 10px;
    padding: 5px;
    display: none;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;

}

.item>.images {
    
    background-position: center;
    background-size: cover;
    height: 15vh;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.menuItems>div>img {
    width: 100%;
    height: auto;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

@media (min-width: 480px) {
    .menuItems>div>img {
        width: 219px;
        
    }
}

.item {
    text-align: center;
    padding: 0;
    background-color: white;
    border: 1px gray;
    box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.29);
    -webkit-box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.29);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
}

.plain-items {

    text-align: center;
    padding: 5px;
    border: 1px solid black;
    border-radius: 10px;
    grid-column: 1/3;
    display: flex;
    justify-content: space-between;
}

.item>div {
    padding: 10px;
    text-align: center;
    height: fit-content;
}

@media (max-width:425px) {
    .item {
        grid-template-rows: 1.3fr 1fr;
    }
}

button {
    position: inherit;
    bottom: 0;
    right: 0;
}

h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

.headerdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    padding-top: 10px;
}

.lines {
    position: relative;
    height: 8px;
    width: 100%;
    background-color: goldenrod;
    top: 0px;
    border-radius: 10px;
}


#BubbleTea>.item {
    background-color: rgb(212, 172, 217);
}