main { display: flex; justify-content:center; } .cart-container { display: flex; flex-direction: column; width: 500px; height: auto; background-color: var(--color-backg-sec); text-align: center; border-radius: 15px; margin: 100px 0 0; padding: 20px; gap: 15px; } .item { display: flex; align-items: center; height: auto; background-color: var(--color-backg-sec); text-align: center; border-radius: 15px; gap: 15px; } .image-cart { width: 160px; height: 160px; } .text { font-size: 1.3rem; } .checkout-area { display: flex; flex-direction:column; align-items: center; height: auto; gap: 15px; } .svg-buy { width: 35px; height: 35px; fill: var(--color-black); } .a-buy { display: flex; align-items: center; justify-content: center; color: var(--color-black); padding: 20px; background-color: var(--color-primary); text-decoration: none; border-radius: 5px; height: 30px; width: 80%; font-size: 2rem; gap: 3%; font-weight: bold; } #cart-clean { color: red; text-decoration: underline; font-size: 1rem; } @media only screen and (max-width: 650px) { .cart-container { width: 300px; } .image-cart { width: 130px; height: 130px; } .text { font-size: 0.9rem; } .subtitle { 1.2rem; } .svg-buy { width: 26.25px; height: 26.25px; } .a-buy { padding: 15px; font-size: 1.5rem; gap: 2.25%; } }