/* General Styles */

body {
    margin-bottom: 20px;
}

@media only screen and (min-width: 576px) {
    header {
        position: relative;
    }

    #header-buttons {
        position: absolute;
        right: 10%;
        top: 30%;
    }
}

@media only screen and (min-width: 798px) {}

@media only screen and (min-width: 992px) {}

/* Show list style */

.show-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    align-content: flex-start;
    row-gap: 20px;
}

.show-item {
    display: inline-block;
    width: 100%;
    position: relative;
}

.show-item img {
    width: 100%;
}

.show-item h4 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    margin: 0;
    text-align: center;
}

.show-item:hover h4 {
    display: block;
}

@media only screen and (min-width: 576px) {
    .show-item {
        width: 43%;
    }
}

@media only screen and (min-width: 798px) {
    .show-item {
        width: 28%;
    }
}

@media only screen and (min-width: 992px) {}
