body {
    background-color: #161616;
    color: white;
    font-family: calibri;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
#birdsContainer{
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.bird {position: absolute; }
.container {
    width: 600px;
    margin: 0 auto; /* Center the container horizontally */
    align-items: center;
}
.gameContainer{
    padding: 5px 20px;
    margin: 0 auto;
    text-align: left;
    background-color: #232323;
    box-shadow: 0 0 10px 0 black;
}
.gameHeader {margin: 20px auto;}
.gameHeader h1 {margin: 0; font-size: 20px;}
.gameHeader p {margin: 0; font-size: 16px;}
.tags{
    font-style: italic;
    font-size: 8px;
    color: black;
}
.tags span{
    background-color: #6f6f6f;
    border-radius: 3px;
    padding: 2px 4px;
    margin-right: 6px;
}
.logo img {
    max-width: 400px;
    height: auto;
    cursor: pointer;
}

.carousel {position: relative;}
.carouselBtnsContainer{
    position: relative; 
    width: 560px; 
    height: 20px;
}
.carouselBtn{
    position: absolute;
    bottom: 0%;
    width: 7%;
    height: 100%;
    margin-bottom: 3.5%;
    border: none;
    background-color: #494949;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23%;
    box-shadow: 0 0 5px 0 #161616;
    border-radius: 5px;
}
.carouselBtn:nth-of-type(1){left: 0; background-image: url('img/arrowLeft.png');}
.carouselBtn:nth-of-type(2){right: 0; background-image: url('img/arrowRight.png');}
.carouselBtn:hover{background-color: #6f6f6f; cursor: pointer;}
.slide{
    position: relative;
    display: none;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
}
.slide.active {display: block; opacity: 1; pointer-events:all}
.slide img,.slide iframe, .slide video{
    width: 560px;
    height: 315px;
    object-fit: contain; 
    background-color: #161616;
    box-shadow: 0 0 7px 0 black inset;
}
.thumbnailWindow{
    position: relative; 
    width: 560px;
    height: 90px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}
.thumbnailWindow::-webkit-scrollbar {height: 20px;}
.thumbnailWindow::-webkit-scrollbar-track {
    background: #161616;
    height: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 #161616;
}
.thumbnailWindow::-webkit-scrollbar-thumb {background: #494949; height: 20px;border-radius: 5px;}
.thumbnailWindow::-webkit-scrollbar-thumb:hover {background: #6f6f6f; cursor: pointer;}
.thumbnailWindow::-webkit-scrollbar-button {display: none;}
.thumbnailStrip{
    position: absolute;
    width: 1200px;
}
.thumbnail {
    display: inline-block;
    width: 112px;
    height: 63px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.thumbnail.active {border: 2px solid white;}
.thumbnail img{
    width: 112px;
}
.storeButton {text-align: center;}
.storeButton img {width: 180px;}
.line {border-bottom: 1px solid #6f6f6f; margin: 60px auto;}

.footer{
    margin: 0 auto;
    margin-bottom: 100px;
    text-align: center; 
    width: 600px;
}
.discordBtn{
    margin: 20px auto;
    display: block;
    width: fit-content;
    border: none;
    border-radius: 10px;
    background-color: #5165f6;
    color: white;
    padding: 11px;
    transition: .2s;
}
.discordBtn:hover{box-shadow: 0px 0px 10px 0px #5165f6;}