*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
    
}
body{
    background: rgb(116,171,182);
background: linear-gradient(90deg, rgba(116,171,182,1) 30%, rgba(105,105,185,1) 100%, rgba(2,0,36,1) 100%);
}   
.form-container  {
    width: 85vw;
    margin: 2rem auto;
    max-width: 40rem;
    background: #5fa8c5;
    padding: 2rem 2.5rem;
    text-transform: capitalize;
    border-radius: 0.25rem;
    -webkit-box-shadow: 1px 1px 13px 5px #000000; 
    box-shadow: 1px 1px 13px 5px #000000;
}
.form-container input {
    width: 100%;
    border: none;
    border-color: transparent;
    background: #bddef7;
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-area{
    display: flex;
    width: 60%;
    margin: auto;
    justify-content: center;
    
}
button{
    width: 6rem;
    height: 2rem;
    margin-left: 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    background-color: #bddef7;
}
.menu-section{
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 3rem;
    font-size: 18px;
    color:rgb(31, 30, 30);
}
.menu-item {
    display: grid;
    gap: 1rem 2rem;
    max-width: 25rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid black;
}
.photo {
    object-fit: cover;
    height: 200px;
    width: 100%;
    border: 0.35rem solid #C59D5F;
    border-radius: 0.25rem;
    display: block;
}
.item-info header {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px dotted #617D98;
}
.item-info h2 {
    margin-bottom: 0.5rem;
}
.price {
    color: rgb(31, 30, 30);
}
.item-text {
    margin-bottom: 0;
    padding-top: 1rem;
}