html{
    scroll-behavior: smooth;
}


body{
    /*
    background-image: linear-gradient(#FEF3E2, #FAB12F, #FA812F, #FA4032);
    color:white;
    height:100%;
    background-color: white;
    background-size: 86px;
    */
    background-image: url("imgs/bg/bg_08.png");
    background-repeat: repeat;
}

.top_bar {
    max-width: 1200px;
    height: 60px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin: 10px auto 12px;
}

.top_bar a img {
    height: 30px;
}

.top_bar div {
    display: flex;
    gap: 8px;
    justify-self: center;
    align-items: center;
}

.top_bar_left {
    flex-grow: 2;
    width: 10%;
}

.top_bar_right a {
    padding: 0 0 0 5px;
}

.top_bar_center {
    flex-grow: 0;
    flex: shrink 0;
}

.top_bar_center a img {
    height: 55px;
    vertical-align: middle;
}

.top_bar_right {
    justify-content: flex-end;
    flex-grow: 2;
    width: 10%;
    margin-left: auto; 
    margin-right: 0;
}

.latest_games {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 50px;
}

.blurb {
    font-size: 24pt;
    text-align: center;
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-shadow:0px 0px 10px black, 0px 0px 10px #ccc;
    color:white;
}

.cards_container {
    display: grid;
    max-width: 1200px;
    margin: auto;
    padding: 24px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px 75px;
}

.card_cell {
    flex: 1 1 auto;
}

.card {
    margin: auto;
    /*background-color: aqua;*/
    aspect-ratio: 4/3;
    justify-content: center;
    align-items:normal;
}

.game_title {
    font-size: 20pt;
    text-align: left;
    border: 0px;
    flex-grow: 1;
    margin: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color:white;
    text-shadow:0px 0px 10px black, 0px 0px 10px #ccc;
}

.game_trailer {
    width: 100%;
    margin: auto;
}
.game_trailer iframe {
    width: 100%;
    aspect-ratio: 1336/761;
}

iframe,
object,
embed {
    -webkit-border-radius: 20px !important; 
    -ms-border-radius: 20px !important; 
    -o-border-radius: 20px !important;  
    border-radius: 20px !important;  
}

.game_trailer img {
    width: 100%;
    aspect-ratio: 1336/761;
    border-radius: 20px;
}

.game_links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    margin: auto;
    max-width: 100%;
    max-height: 12%;
    height: auto;
    width: auto;
}

.game_stores {
    gap: 10px;
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
}

.game_socials {
    gap: 10px;
    text-align: end;
}

.game_links a img {
    max-height: 100%;
    max-width: 100%;
    padding: 5px;
}

.game_socials a img {
    max-height: 100%;
    max-width: 100%;
}

.carousel {
    border-radius: 30px;
    overflow: hidden;
}

.carousel-indicators li {
    margin: 1px 3px;
}

.carousel-indicators .active {
    margin: 0px 3px;
}

.carousel-caption h1 {
    font-size: 28pt;
    text-align: center;
    border: 0px;
    flex-grow: 1;
    margin: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-shadow:0px 0px 4px black, 0px 0px 4px black;
    color:white;
}