body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    height: 100%;
    background-color: rgba(255, 253, 244, 0.96);
}
.App {
    margin: 0 auto;
    max-width: 500px;
    width: 90%;
    user-select: none;
}
h4 {
    padding: 4px;
    color: #444;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
header {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.display-img {
    width: 80px;
    padding: 0;
}

.fa-regular {
    color: black;
    font-size: 25px;
    margin: 0;
    padding: 0;
}
.dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart {
    color: #444;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.input-field {
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.40);
    background: #FFF;
    padding-left: 10px;
    margin-bottom: 5px;
    box-shadow: 0px 16px 24px 0px rgba(255, 255, 255, 0.14);
}
.tastList {
    color: #444444;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
ul li {
    border-radius: 14px;
    border: 2px solid #D6D6D6;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.fa-solid {
    padding: 5px 8px;
    font-size: 30px;
    background-color: rgb(255, 255, 255);
    border: 1px solid yellow;
    border-radius: 12px;
}

.fa-solid:hover,
.fa-solid:focus {
    background-color: rgb(243, 243, 9);
    font-size: 35px;
    border: none;
}

button {
    border: none;
    padding: 15px;
   
}

footer {
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 67px;
    width: 100%;
    background-color: #EDEAEA;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.black-background {
    background-color: black;
}
  
.white-text {
    color: rgb(181, 24, 24);
}
 
  
