body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #ef4e22;
}
.error {
    display: flex;
    justify-content: center;
}
.error p{
    background-color: #ffffff;
    width: 300px;
    text-align: center;
    font-size: 20px;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
}
.body {
    padding-bottom: 33px;
    padding-top: 8px;
    background-color: #ef4e22;
}
.header {
    background: #ef4e22;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header img {
    max-width: 70%;
}
.cart {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.cart img {
    width: 60%;
    margin: 20px;
    border-radius: 25px;
    border: gray 4px solid;
}
.cart button {
    background-color: #ef4e22;
    border: none;
}
.footer {
    background: transparent;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .header img {
        max-width: 100%
    }
    .cart img {
        width: 80%;
    }

}
.cart button {
    padding: 10px 15px;
    font-size: 16px;
}
.cart img {
    margin: 10px;
}

.header-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
}
.highlighted-text {
    color: #000000 !important;
}