body {
display: block;
margin: 0;
justify-items: center;
font-family: "Smythe", system-ui;
font-weight: 400;
}

header {
    width: 600px;
    height: 167px;
    background-image: url(Images/headerBackground.jpg);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: 30px;
    padding-left: 30px;
    font-size: larger;
    
}
.menu-items {
    width: 500px;
    height: 140px;
    padding: 15px;
}
.item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
}
.menu-img{
    width: 100px;
}

.btn{
    border: gray 1px solid;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}
.btn:hover{
    border: black 1px solid;
    font-size: larger;
    border-radius: 50%;
    padding: 10px;
}

section{
    width: 500px;
}

.order-section{
    text-align: center;
    margin-top: 220px;
    width: 100%;
    padding: 20px;
    
}

.order-items{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font: 400;
    font-size: 28px;
    
}
.total-price{
    margin-top: 10px;
    font-weight: 400;
    font-size: larger;
    font-weight: bolder;
    font-size: xx-large;
}
.order-btn {
    margin-top: 10px;
    padding: 10px 30px;
    cursor: pointer;
    background-color: #16DB99;
    border: none;
    border-radius: 5px;
    width: 200px;
    height: 50px;
;
}
.payment-modal{
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 420px;
    width: 350px;
    border-radius: 5px;
    box-shadow: 0px 0px 6px 2px #666;
    background-color: whitesmoke;
    color: black;
    text-align: center;
}

.info-btn{
    display: block;
    padding: 20px;
    margin: 20px auto;
}
.pay-btn{
    width: 200px;
    height: 50px;
    padding: 20px;
    margin: 20px auto;
    padding: 10px 30px;
    cursor: pointer;
    background-color: #16DB99;
    border: none;
    border-radius: 5px;
    font-weight: bolder;
    color: white;
}
.hidden{
    display: none;
}

.thanks-message {
    color: #065F46;
    background-color: #ECFDF5; 
    max-width: 500px; 
    margin: 270px auto; 
    padding: 30px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
}



