html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    font-size: 18px;
    background-color: #2f2f2f;
    color: #eeeeee;
    line-height: 1.5;
}

h2 {
    margin-bottom: 0;
}

h3 {
    margin: 1rem 0;
}

p {
    margin: 0;
}

small {
    font-size: .8rem;
    color: #797979;
}

main {
    margin: 1rem;
    height: 100vh;
}

a {
    /*text-decoration: none;*/
    color: #f3f3f3;
}

.title {
    text-align: center;
    width: 100%;
    margin: 2rem 0;
    font-size: 1.5rem;
}

.title h2 {
    font-size: 2.5rem;
}

.wishlist {
    display: flex;
    flex-direction: column;
}

.wishlist .header, .wishlist .item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
}

.wishlist .header {
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    /*margin-bottom: 1.5rem;*/
}

.wishlist .header span {
}

.wishlist .items {
    /*border: thin solid #f3f3f3;*/
    /*border-radius: 10px;*/
}

.wishlist .item {
    border: thin solid #5e5e5e;
    box-shadow: 3px 3px 3px 0 rgba(94, 94, 94, 0.7);
    border-radius: 10px;
    /*border-bottom: thin solid #f3f3f3;*/
    /*border-bottom: none;*/
    margin: 1rem 0;
    align-items: center;
    padding: 2rem .5rem;
    text-align: center;
}

.wishlist .item p {
    filter: brightness(75%);
}

.wishlist .item img {
    filter: opacity(75%);
}

.wishlist .item > * {
    /*border-right: thin solid yellow;*/
}

.wishlist .item:last-child {
    /*border-bottom: none;*/
}

.wishlist .item:hover {
    border-color: rgba(205, 205, 205, 0.75);
    box-shadow: 3px 3px 13px 0 rgba(94, 94, 94, 1);
}

.wishlist .item:hover img {
    filter: opacity(100%);
}

.wishlist .item:hover p {
    filter: brightness(100%);
}

.wishlist .item img {
    max-height: 150px;
    border-radius: 10px;
}


.wishlist .item.gifted {
    border-color: #ff0000cc !important;
    box-shadow: 3px 3px 3px 0 rgba(255, 0, 0, 0.38) !important;
    position: relative;
}

.wishlist .item.gifted img {
    filter: brightness(75%) !important;
}
.wishlist .item.gifted p {
    filter: opacity(75%) !important;
}

.wishlist .item.gifted label {
    position: absolute;
    top: 20px;
    left: -15px;
    background-color: #b10000;
    border-radius: 8px;
    border: none;
    color: white;
    padding: .5rem .75rem;
    z-index: 1;
    transform: rotateZ(-45deg);
}


@media only screen and (max-width: 480px) {

    html {
        font-size: 10px;
    }

    .wishlist .header, .wishlist .item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .wishlist .item p {
        filter: brightness(100%) !important;
    }

    .wishlist .item img {
        filter: opacity(100%) !important;
    }
}

