/* -- */

#carousel {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    min-height: 300px;
    max-height: 300px;
    height: 300px;
    flex-shrink: 0;
    flex-grow: 0;
    position: absolute;
    width: calc(100% - 2em);
    /* z-index: -1; */
    pointer-events: none;
}

#gamebox {
    min-width: 80%;
    max-width: 80%;
    width: 80%;
    max-height: 100%;
    min-height: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

.gamedesc {
    font-size: 2em;
    font-family: "ocr";
    text-align: center;
}

.gameimg {
    position: relative;
    /* min-height: 100%; */
    /* max-height: 100%; */
    /* height: 100%; */
    min-height: 200px;
    max-height: 200px;
    /* max-width: 75vw; */
    display: block;
    width: auto;
    /* object-fit: contain; */
    object-fit: scale-down;
    width: 100%;

}

.c-button {
    min-height: 100%;
    min-width: 7%;
    border: none;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    /* z-index: 5; */
    /* position: relative; */
    pointer-events: auto;
}

/* .c-button:hover { */
/*     background-color: red; */
/* } */

#descbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#descbox div {
    width: 75%;
}

#button-left {
    background-image: url("/img/arrow-left.svg");
}

#button-right {
    background-image: url("/img/arrow-right.svg");
}

.gamedesc a:nth-child(1) {
    color: blue;
}

.gamedesc a:nth-child(1)[href=""] {
    color: red;
    text-decoration: none;
    pointer-events: none;
}
