body {
    background-color: black;
}

* {
    color: #fff;
    font-family: 'Horizon';
}

nav {
    padding: 10px;
}

nav img {
    height: 30px;
}

#yourcartisempty {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#cart {
    display: none;
    flex-direction: column;
    padding: 40px;
}

#cartItems {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
}

.itemImage {
    width: 400px;
    max-width: 40%;
}

li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 28px;
}

.itemInfo {
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.attribute {
    display: inline-block;
    padding: 2px 5px;
    border: 1px solid #fff;
}

span.price {
    display: inline;
    font-family: 'montserrat';
    font-weight: bold;
}

.remove {
    padding-top: 8px;
}

#clear, .remove {
    display: block;
    background-color: black;
    border: none;
    margin: auto;
    font-family: 'montserrat';
}

#clear:hover, .remove:hover {
    text-decoration: underline;
}