/*my_css.css*/
.carousel {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.game-slide {
    transition: opacity 2s ease-in-out; /*slide transition style*/
    position: absolute;
    width: 100%;
    height: 100%;
    display: none; /*hide slides by default */
}

.game-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text {
    position: absolute;
    top: 0px; /*align the text at the top*/
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /*semi-transparent background*/
    color: white;
    text-align: center;
    padding: 10px 0;
}