body {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Smythe', cursive;
} 

input {
    display: block;
    border: 2px solid #757575;
    font-family: Arial, Helvetica, sans-serif;
    color: #757575;
    padding: 18px 20px;
    font-size: 20px;
    margin: 12px 0;
    width: 90%;
    height: 50px;
}

.hidden {
    display: none;
}

.container {
    width: 600px;
    margin: 0 auto;
}

.align-right {
    text-align: right;
}

.header-bg {
    background-image: url("https://images.unsplash.com/photo-1616645500344-209060c84970?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2370&q=80");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 167px;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding-left: 45px;
    margin-bottom: 12px;
}

.item-outer {
    border-bottom: solid 1px #bdbdbd;
    margin: 0 auto;
    width: 550px;
}

.item-inner {
    display: flex;
    padding: 45px;
    gap: 20px;
    align-items: center;
    padding: 0 0;
}

.cart-item, .cart-checkout {
    display: flex;
    justify-content: space-between;
    margin: 0;
    height: 50px;
}

.item-emoji {
    font-size: 70px;
}

.text-gray {
    color: #8b8b8b;
}

.item-price {
    font-size: 20px;
}

.btn-item {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    border-radius: 50%;
    border: 1px solid #dedede;
    margin: auto auto;
    width: 50px;
    height: 50px;
    color: gray;
    margin-right: 0;
}

.btn-text-only {
    border: none;
    background: none;
}

.btn-text-only:hover,
.btn-text-only:focus {
    background-color: #16db99;
    color: white;
}

.btn-purchase {
    background: #16db99;
    color: white;
    width: 100%;
    border: none;
    border-radius: 3px;
    padding: 18px 20px;
}

.modal-outer {
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-inner {
    display: block;
    margin: 15% auto;
    padding: 20px;
    background-color: white;
    width: 524px;
    height: 524px;
    border: 1px solid #888;
}

.order-complete {
    background-color: #ecfdf5;
    color: #065f46;
    padding: 26px;
    font-size: 32px;
    text-align: center;
    margin-top: 45px;
}