

html { box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit;
}


img { max-width: 100%; }


body {
    background: #000;
    color: #fff;
    font-family: sans-serif;
}

.contain {
    max-width: 60em;
    margin: 1em auto;
    padding: 2em;
    border: 1px solid;
}

.show {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: flex-end;
    margin: 2em 0;
    border: 1px solid;
    transition: all 1s ease-out;
}

.show-info {
    background-color: rgba(0,0,0, .75);
    width: 100%;
    padding: 1em;
}


.cats div { display: inline-block; }

.cats label {
    display: inline-block;
    margin: .25em 1em;
    border: 1px solid;
    padding: .25em 1em;
}


[type=checkbox] { display: none; }

[type=checkbox] + label {
    cursor: pointer; 
    text-decoration: line-through;
}

[type=checkbox]:checked + label {
    text-decoration: none;
}

.sorts {
    padding: 1em 0;
}

.sort {
    cursor: pointer;
}

.sort.asc, .sort.desc {
    font-weight: bold;
}

.sort.asc::after {
  content: "\002B06";
  padding-left: 3px;
}

.sort.desc::after {
  content: "\002B07";
  padding-left: 3px
}

.tag {
    text-align: right;
}
