.shelf-container {
    display: flex;
    margin-top: 60px;
    column-gap: 30px;
}

.rightcolumn {
    width: 75%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.leftcolumn {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 25%;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(179, 192, 239, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
}

.row {
    display: flex;
    width: 100%;
    height: 160px;
    margin-bottom: 60px;
    justify-content: space-around;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(179, 192, 239, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
}

.placeholder {
    display: flex;
    width: 130px;
    height: 180px;
    align-self: flex-end;
    background-color: rgba(120, 120, 120, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(106, 107, 108, 0.158);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    filter: var(--fil);
}

.placeholder:hover {
    box-shadow: 0 0 5px black, inset 0 0 5px black;
    cursor: pointer;
}

.text img:hover {
    box-shadow: 0 0 5px black;
    z-index: 2;
    filter: brightness(80%);
    cursor: pointer;
}


.placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: blur(3px) opacity(0.75);
}

.text {
    display: flex;
    width: auto;
    height: 180px;
    align-self: flex-end;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.465);
    filter: var(--fil);
}

p {
    font-family: 'JosefinSans';
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 0 1px rgb(0, 0, 0);
}

h1 {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 1px #000000;
}

@media screen and (max-width: 769px) {
    .shelf-container {
        flex-direction: column;
        row-gap: 15px;
        position: relative;
        justify-content: center;
    }
    .leftcolumn {
        width: 100%;
        order: 1;
    }

    .rightcolumn {
        width: 90%;
        align-items: center;
        align-self: center;
        order: 2;
    }
    .row {
        flex-direction: column;
        row-gap: 10px;
        height: fit-content;
    }

    .placeholder {
        height: 270px;
        width: 195px;
        align-self: center;
    }

    .text {
        height: 270px;
        width: 195px;
        align-self: center;
    }

    .text img {
        height: 270px;
        width: 195px;
        align-self: center;
    }

    #background-5 {
        background-size: cover;
    }
}