/*my_css.css*/

/*css for the slideshow of products on the homepage*/
.carousel {
    position: relative;
    width: 25vw; /*viewport units to make size scale*/
    height: 25vw;
    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;
}
/*css for the feedback form*/
.form-row {
    display: block; /* Stack inputs vertically */
    margin-bottom: 15px; /* Add some space between form rows */
}

/* Style for the form actions like the submit and reset buttons */
.form-actions {
    display: block;
    margin-top: 20px; /* Add some space before the form actions */
}