body {
    font-family: 'Smythe', cursive;
    margin: 0;
}
header {
    color: white;
    background-color: gray;
    background-image: url("background.png");
    background-size: cover;
    padding: 2.75em 0;
    padding-left: 2em;
}

h1,h3 {
    margin:0;
    margin-bottom: .2em;
}

button {
    background: #16DB99;
    color: white;
    width: 90%;
    font-family: 'Verdana';
    font-weight: 700;
    height: 60px;
    margin: 1em auto;
    display: none;
}
input {
    font-family: 'Verdana';
    color: #757575;
    margin: 1em;
    height: 70px;
    border: 1.3x solid #757575;
    border-radius: 3.9px;
  
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;

}
.form-container {
    width: 80%;
    height: 450px;
    margin: 0 auto;
    padding: 1.5em;
    position: absolute;
    top:290px;
    left:0;
    right: 0;
    bottom: 0;
    display: none;
    background: white; 
    border-radius: 10px;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 1em;
    min-height: 100vh;
    position: relative;
}

/* information */
.emoji {
    display: flex;

    width: 20%;
    font-size: 4.92rem;
}
.information {
    width: 60%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   margin-left: 1.9em;
}
.add-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.add {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    border: 1.5px solid #DEDEDE;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}
.add:hover,
.add:focus {
    cursor: pointer;
}
.name,
.ingredients,
.price {
    margin: 8px;
}
.name {
    font-size: 1.75rem;
}

.ingredients {
    color: #8B8B8B;

}
.price {
    font-size: 1.5rem;
}
.food {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    border-bottom: 1px solid #D2D2D2;
}

/* order */

.order-info {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto;

    padding: 0;
}
.order-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 60px;
    display: none;
}

.remove-text {
    font-family: 'Verdana';
    font-size: 0.75rem;
    color: #BBBBBB;
    width: 100%;
}
.remove-text:focus,
.remove-text:hover {
    cursor: pointer;
}

.total-price {
    border-top: 2px solid #393333;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    display: none;
}
.message {
    width: 70%;
    font-size: 2rem;
    padding: 1.5em;
    color: #065F46;
    height: 60px;
    background: #ECFDF5;
    text-align: center;
    margin: 0 auto;
    margin-top: 1em;
    
}