@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
* {
    /*outline: red 1px solid;*/
    font-family: 'Outfit',sans-serif;
}

body {
    padding: 4em 20%;
}

#main {
    display: flex;
    flex-flow: column nowrap;
    gap: 1em;
    align-items: center;
}

.item-wrapper {
    width: 300px;
    border: 2px solid #000;
    border-radius: 0.5em;
    padding: 1em 0.5em;
    display: flex;
    flex-flow: column wrap;
    gap: 0.5em;
}

.name-price-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    font-weight: bold;
}

.cart-button-wrapper {
    display: flex;
    flex-flow: row-reverse nowrap;
}
.cart-button, .clear-cart-button {
    color: #fff;
    background-color: #000;
    border: 2px solid #000;
    border-radius: 0.25em;
    padding: 0.25em 0.5em;
    transition-duration: 50ms;
}
.cart-button:hover, .cart-button:focus,.clear-cart-button:hover, .clear-cart-button:focus {
    color: #000;
    background-color: #fff;
}

#cart {
    border: 2px solid #000;
    border-radius: 0.5em;
    padding: 1em 0.5em;
}
.cart-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.clear-cart-button {
    z-index: 11;
}