*, html {
    scroll-behavior: smooth !important;
}

a {
    color: rgb(172, 172, 255);
}

.table-wrapper {
    min-height: 200px;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.2s;
}

.no-animation {
    animation: none !important;
    transition: none !important;
}

body, html {
    margin: 0;
    padding: 0;
}

#background-video-container {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#background-video {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.bi {
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentcolor;
}

/* .product {
    background-color: rgb(41, 41, 41);
    border-radius: 10px;
    min-width: 420px;
} */

.product-developer {
    font-size: 1em;
}

.product-image {
    width: 100%;
    max-width: 370px;
    border: solid;
    border-width: 2px;
    border-color: white;
}

.dreamcast-compatibility {
    text-decoration: underline;
    cursor: pointer;
    width: 240px;
    margin: 0 auto;
}

.cart-item-image {
    /* max-width: 320px; */
    border: solid;
    border-width: 2px;
    border-color: white;
}

.change-quantity {
    text-decoration: none;
    color: white;
    padding-left: 0.2em;
    padding-right: 0.2em;
    font-size: 1.2em;
}

.shipping-address {
    cursor: pointer;
    border-radius: 10px;
    background-color: rgba(72, 72, 72, 0.2);
}

.shipping-address.selected {
    background-color: rgba(102, 102, 102, 0.72);
}

.address-line {
    margin: 0.1em;
    font-size: 1.2em;
}

.order {
    background-color: rgb(41, 41, 41);
    border-radius: 10px;
    min-width: 420px;
}

.blog-image {
    background-color: rgb(41, 41, 41);
    border-radius: 10px;
    border: solid;
    border-width: 1px;
    border-color: white;
}

/* Game Page */

.container {
    display: flex;
    align-items: stretch;
    gap: 10px; /* Space between images */
    padding: 20px; /* Padding around the container */
}

.left-image {
    flex: 2; /* Larger image takes up more space */
    display: flex;
}

.left-image video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.right-images {
    flex: 1; /* Smaller images take up less space */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between stacked images */
}

.right-images img {
    width: 100%;
    object-fit: cover;
}

.side-by-side-container {
    display: flex;
    justify-content: space-between; /* Space images evenly */
    gap: 10px; /* Space between the side-by-side images */
    padding: 20px; /* Padding around the container */
}

.side-by-side-container img {
    width: calc(50% - 5px); /* Each image takes up half the width minus half the gap */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
}

.game-image {
    border: solid;
    border-width: 1.5px;
    border-color: white;
    filter: drop-shadow(0px 0px 2px #000000);
}

@font-face {
    font-family: "Monarcha";
    src: url('/fonts/monarcha.otf') format("opentype");
}

.game-text {
    font-family: "Monarcha", Verdana;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    font-size: 1.1em;

    filter: drop-shadow(2px 2px 5px #000000);
}

.game-text-large {
    font-size: 1.3em;
}

.game-text-title {
    font-size: 1.6em;
}
 
.game-text-small {
    font-size: 1em;
}

.game-text-title-small {
    font-size: 1.7em;
}

@media screen and (min-width: 500px) {
    .game-text {
       font-size: 1.5em;
    }

    .game-text-large {
        font-size: 1.7em;
    }

    .game-text-title {
        font-size: 2em;
    }

    .game-text-small {
        font-size: 1.2em;
    }

    .game-text-title-small {
        font-size: 2.1em;
    }
}

.game-product {
    margin: 50px auto;
    padding: 35px;
    text-align: center;

    background-color: rgba(1, 1, 1, 0.4);
}

.game-product img {
    max-width: 100%;
    width: 500px;
    margin: 0 auto;
}

.game-product-buy {
    margin: 0 auto;
    text-align: center;
    width: 300px;
    max-width: 100%;
}

.game-banner {
    margin: 0 auto;
    text-align: center;
    width: 850px;
    max-width: 100%;
}

table {
    text-align: center;
}

.dreamdisc-submission {
    display: block;
    background-color: rgb(41, 41, 41);
    border-radius: 10px;
    border: solid;
    border-width: 1px;
    border-color: white;
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 10px;
}