body {
    margin: 0;
    padding: 0;
}

.topbar {
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: #cb1b1b;
}

.logo {
    height: 5vw;
    width: auto;
    margin-left: 0.75vw;
    margin-top: 1vh;
}

.cart {
    height: 5vw;
    width: auto;
    margin-right: 0.75vw;
    margin-top: 1vh;
}

.placeholder {
    display: flex;
    width: 100%;
    height: 10vw;
    left: 0;
}

.item_holder {
    /*width: 100vw;*/
    display: flex;
    /*justify-content: space-around;*/
    align-items: flex-start;
}

.item {
    width: 21vw;
    height: auto;
    background-color: white;
    border: 0.15vw solid #ccc;
    padding: 1.2vw;
    box-sizing: border-box;
}

.item_image {
    width: 100%;
    height: 16vw;
    background-color: #ddd;
    margin-bottom: 1vw;
}