html, body {
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #09090b;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, body * {
    box-sizing: inherit;
}

.container {
    height: calc(100% - 1rem);
    display: flex;
    flex-direction: row;
    margin: 0.5rem;
}

.leftside {
    width: 15%;
    height: 99vh;
    margin-right: 0.5rem;
    position: fixed;
}

header {
    background: linear-gradient(15deg, #154d2b, #18181b, #18181b, #18181b, #18181b, #18181b);
    width: 100%;
    height: 10%;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 0.5rem;
}

header a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
}

header img {
    width: 4rem;
    height: 4rem;
    margin: 0 1.5rem 0 1rem;
    border-radius: 50%;
}

nav {
    background-color: #18181b;
    width: 100%;
    height: calc(100% - 10% - 0.5rem);
    border-radius: 0.5rem;
}

.nav-title {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    font-size: 1.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
    color: #a19fa6;
}

.nav-items {
    width: 100%;
    height: calc(100% - 5%);
}

.nav-items ul {
    margin: 0;
    padding: 0 0 0 0.5rem;
}

.nav-items a {
    list-style: none;
    background-color: #1d1d22;
    width: 98%;
    height: 5vh;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: #154d2b 0.1rem 0.1rem 0.1rem;
    transition: background-color 0.3s ease;
}

.nav-items a:hover {
    background-color: #154d2b;
    box-shadow: #a19fa6 0.1rem 0.1rem 0.1rem;
}

.nav-item-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 0.5rem;
    color: #ffffff;
}

.fas.fa-bolt {
    font-size: 1.5rem;
    color: #ff4500;
    margin: 0 1rem;
}

.fas.fa-star {
    font-size: 1.3rem;
    color: #ffd700;
    margin: 0 1rem;
}

.fas.fa-fire {
    font-size: 1.5rem;
    color: #ff0000;
    margin: 0 1rem;
}

.mainfooter {
    width: calc(100% - 15% - 0.5rem);
    margin-left: calc(15% + 0.5rem);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    background: linear-gradient(to bottom, #154d2b, #18181b, #18181b, #18181b, #18181b, #18181b);
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-header {
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.main-header h1 {
    margin-left: 13.5%;
}

.language-select {
    margin-right: 13.5%;
    width: 5vw;
    height: 3vh;
    border: #000 solid 0.1rem;
    border-radius: 0.5rem;
}

.ga {
    width: 61vw;
    height: 55vh;
    display: flex;
    flex-direction: row;
}

.ga-left {
    width: 45vw;
    height: 55vh;
}

.ga-left-game {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: #1d1d22;
    border-radius: 0.5rem 0.5rem 0 0;
}

.ga-left-game iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
}

.game-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.game-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 0.5rem 0.5rem 0 0;
    z-index: 10;
}

.game-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.game-bg-cover {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 0.5rem 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: inset 0 0 1.25rem 0.625rem rgba(54, 54, 54, 0.8);
}

/*play button ↓ */
.playbutton {
    height: 5vh;
    width: 8vw;
    border: none;
    border-radius: 1rem;
    background: #1d1d22;
    font-size: 1.5rem;
    color: #ffffff;
    font-family: inherit;
    font-weight: 500;
    box-shadow: 0 0 0.5rem 0 #ffffff;
    cursor: pointer;
   }
   
.playbutton:hover {
    background: #154d2b;
    animation: shake3856 0.3s linear infinite both;
   }
   
   @keyframes shake3856 {
    0% {
     -webkit-transform: translate(0);
     transform: translate(0);
    }
   
    20% {
     -webkit-transform: translate(-2px, 2px);
     transform: translate(-2px, 2px);
    }
   
    40% {
     -webkit-transform: translate(-2px, -2px);
     transform: translate(-2px, -2px);
    }
   
    60% {
     -webkit-transform: translate(2px, 2px);
     transform: translate(2px, 2px);
    }
   
    80% {
     -webkit-transform: translate(2px, -2px);
     transform: translate(2px, -2px);
    }
   
    100% {
     -webkit-transform: translate(0);
     transform: translate(0);
    }
   }
   
  
/*play button ↑   */

.ga-left-info {
    width: 100%;
    height: 5vh;
    background-color: #1d1d22;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.game-info-container {
    height: 100%;
    width: 65%;
    display: flex;
    align-items: center;
}

.game-info-container img {
    width: 3rem;
    height: 3rem;
    margin-left: 0.75rem;
    border-radius: 0.5rem;
}

.game-info-title {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 0.75rem;
    line-height: 1.5rem;
}

.single-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin:0%;
}

.share-full {
    height: 100%;    
    width: 35%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.3125rem;
    margin-right: 2.5rem;
}

.shareto {
    height: 75%;
    width: 100%;
    position: relative;
    line-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-button {
    position: absolute;
    height: 75%;
    width: 80%;
    background: #dfe6e9;
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: .3s linear;
}

.share-button:hover {
    transform: scale(1.1);
}

.share-button span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    color: #000;
    font-size: 1.2vh;
    text-align: center;
    z-index: 99;
    transition: .6s linear;
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-button:hover span {
    transform: translateX(-100%);
    transition-delay: .3s;
}

.share-button a {
    flex: 1;
    height: 100%;
    font-size: 1rem;
    color: #33445c;
    text-align: center;
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.3s linear;
}

.share-button:hover a {
    opacity: 1;
    transform: translateX(0);
}

.share-button a:nth-of-type(1) {
    transition-delay: 1s;
}

.share-button a:nth-of-type(2) {
    transition-delay: 0.8s;
}

.share-button a:nth-of-type(3) {
    transition-delay: 0.6s;
}

.share-button a:nth-of-type(4) {
    transition-delay: 0.4s;
}

.share-button a:nth-of-type(5) {
    transition-delay: 0.1s;
}

.fullscreen {
    background-color: #e0e0e0;
    width: 50%;
    height:58%;
    color: white;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
}

.fullscreen button {
    background: none;
    border: none;
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
}

.fullscreen:hover {
    background-color: #40a070;
}

.ga-right {
    width: 15vw;
    height: 55vh;
    margin-left: 1vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 55vh;
}

.ga-right a {
    color: white;
    text-decoration: none;
}

/* card in trending ↓ */
.trending-game-card {
    width: 9.5vw;
    height: 12.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1vh;
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.trending-game-card:hover {
    border: 2px solid #154d2b;
    border-radius: 0.5rem;
}

.trending-game-card:hover .trending-game-title {
    background-color: #154d2b;
}

.trending-game-card img {
    width: 100%;
    height: 80%;
    border-radius: 0.5rem 0.5rem 0 0;
}

.trending-game-title {
    width: 100%;
    height: calc(100% - 80%);
    background-color: #1d1d22;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* card in trending ↑ */

.controls {
    width: 73%;
    background: linear-gradient(to right, #154d2b, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22);
    border-radius: 0.5rem;
    margin-top: 3rem;
    padding-left: 1rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.controls ul {
    font-size: 1.3rem;
    line-height: 2rem;
}

.recommend {
    width: 73%;
    margin-top: 3rem;
}

.recommend-games {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommend-games a {
    color: white;
    text-decoration: none;
}

/* card in new ↓ */
.new-game-card {
    width: 7.25vw;
    height: 12.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.new-game-card:hover {
    border: 2px solid #154d2b;
    border-radius: 0.5rem;
}

.new-game-card:hover .new-game-title {
    background-color: #154d2b;
}

.new-game-card img {
    width: 100%;
    height: 80%;
    border-radius: 0.5rem 0.5rem 0 0;
}

.new-game-title {
    width: 100%;
    height: calc(100% - 80%);
    background-color: #1d1d22;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* card in new ↑ */

.intro  {
    width: 73%;
    margin-top: 3rem;
    background: linear-gradient(225deg, #154d2b, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22);
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.intro-box {
    width: 100%;
    padding: 1rem;
    font-size: 1.3rem;
    line-height: 2.5rem;
}

.intro-box h2 {
    background: linear-gradient(to right, #154d2b, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-box img {
    max-width: 100%;
}

.testimonials {
    width: 73%;
    margin-top: 3rem;
    background: linear-gradient(45deg, #1d1d22, #1d1d22, #1d1d22, #154d2b,  #1d1d22, #1d1d22, #1d1d22);
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.testimonials-container {
    width: 100%;
    padding: 1rem;
}

.testimonials-items {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.testimonials-item {
    width: 30%;
    height: auto;
    background-color: #18181b;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    border-radius: 0.5rem;
    padding: 1rem;
    line-height: 2.5rem;
}

.faq {
    width: 73%;
    margin-top: 3rem;
    background: linear-gradient(45deg, #1d1d22, #1d1d22, #1d1d22,  #1d1d22, #1d1d22, #1d1d22, #154d2b, #1d1d22, #1d1d22);
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.faq-container {
    width: 100%;
    padding: 1rem;
}

.faq-item {
    width: 100%;
    background-color: #25252b;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    border-radius: 0.5rem;
    padding: 1rem;
    line-height: 1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.2rem;
    line-height: 2rem;
}

.features {
    width: 73%;
    margin-top: 3rem;
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.features-container {
    width: 100%;
    padding: 1rem;
}

.feature-items {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.feature-item {
    width: 30%;
    height: auto;
    background-color: #18181b;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    border-radius: 0.5rem;
    padding: 1rem;
    line-height: 2.5rem;
    background: linear-gradient(45deg, #154d2b, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22, #1d1d22);

    
}

.work {
    width: 73%;
    margin-top: 3rem;
    border-radius: 0.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.work-container {
    width: 100%;
    padding: 1rem;
}

.step {
    width: 100%;
    background-color: #25252b;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    border-radius: 0.5rem;
    padding: 1rem;
    line-height: 1rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.2rem;
    line-height: 2rem;
}

.more {
    width: 73%;
    margin-top: 3rem;
}

.more a {
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
}

.more-games {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* card in hot ↓ */
.hot-game-card {
    width: 9.5vw;
    height: 12.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
}

.hot-game-card:hover {
    border: 2px solid #154d2b;
    border-radius: 0.5rem;
}

.hot-game-card:hover .hot-game-title {
    background-color: #154d2b;
}

.hot-game-card img {
    width: 100%;
    height: 80%;
    border-radius: 0.5rem 0.5rem 0 0;
}

.hot-game-title {
    width: 100%;
    height: calc(100% - 80%);
    background-color: #1d1d22;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* card in hot ↑ */

footer {
    width: 100%;
    margin-top: 0.5rem;
    background: linear-gradient(225deg, #154d2b, #18181b, #18181b, #18181b, #18181b, #18181b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    width: 73%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-content p {
    width: 50%;
}

.te-pr-dm {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.te-pr-dm a {
    color: white;
    text-decoration: none;
}

.dmca {
    width: 73%;
    height: auto;
    display: flex;
    justify-content: center;
}

.dmca-content {
    width: 100%;
    height: auto;
    background-color: #1d1d22;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
}

.terms {
    width: 73%;
    display: flex;
    justify-content: center;
}

.privacy {
    width: 73%;
    height: 84vh;
    display: flex;
    justify-content: center;
}

.tp-content {
    width: 100%;
    background-color: #1d1d22;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    box-shadow: #0d0d0f 0rem 0.2rem 0.2rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
}


@media (max-width: 375px) {
    html, body {
        font-size: 12px;
    }

    .container {
        flex-direction: column;
    }

    .leftside {
        width: 100%;
        height: auto;
        margin-right: 0;
        position: relative;
    }

    header {
        justify-content: center;
    }
    
    nav {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5rem;
    }
    
    .nav-title {
        display: none;
    }
    
    .nav-items ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .nav-items a {
        width: 20%;
        height: 3vh;
        justify-content: center;
        margin-right: 0.5rem;
    }

    .fas.fa-bolt {
        display: none;
    }
    
    .fas.fa-star {
        display: none;
    }
    
    .fas.fa-fire {
        display: none;
    }

    .mainfooter {
        width: 100%;
        margin: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-header {
        width: 100%;
        height: 6vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    
    .main-header h1 {
        margin: 0;
    }
    
    .language-select {
        margin-right: 0;
        width: 15vw;
        height: 2vh;
    }

    .ga {
        width: 100%;
        height: 90vh;
        display: flex;
        flex-direction: column;
    }
    
    .ga-left {
        width: 100%;
        height: 55vh;
        margin-bottom: 0.5rem;
    }
    
    #loadGameButton {
        width: 12vw;
       }

    .ga-left-info {
        flex-direction: row;
    }

    .game-info-container {
        width: 30%;
    }
    
    .game-info-container img {
        width: 2rem;
        height: 2rem;
    }
    
    .game-info-title {
        width: 30%;
    }
    
    .single-title {
        font-size: 1.2rem;
    }

    .game-info-title span {
        display: none;
    }
    
    .share-full {    
        width: 70%;
        justify-content: center;
    }
    
    .ga-right {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .new-game-card {
        width: 23vw;
    }

    .trending-game-card {
        width: 30vw;
    }

    .controls {
        width: 100%;
    }

    .recommend {
        width: 100%;
    }

    .recommend-games {
        justify-content: space-around;
    }

    .intro  {
        width: 100%;
    }

    .testimonials {
        width: 100%;
    }
    
    .testimonials-items {
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonials-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .faq {
        width: 100%;
    }

    .features {
        width: 100%;
    }
    
    .feature-items {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }
    
    .work {
        width: 100%;
    }

    .more {
        width: 100%;
    }

    .more-games {
        justify-content: space-around;
    }

    .hot-game-card {
        width: 30vw;
    }

    .footer-content {
        width: 100%;
    }
}


@media (min-width: 376px) and (max-width: 480px) {
    html, body {
        font-size: 14px;
    }

    .container {
        flex-direction: column;
    }

    .leftside {
        width: 100%;
        height: auto;
        margin-right: 0;
        position: relative;
    }

    header {
        justify-content: center;
    }
    
    nav {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5rem;
    }
    
    .nav-title {
        display: none;
    }
    
    .nav-items ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .nav-items a {
        width: 20%;
        height: 3vh;
        justify-content: center;
        margin-right: 0.5rem;
    }

    .fas.fa-bolt {
        display: none;
    }
    
    .fas.fa-star {
        display: none;
    }
    
    .fas.fa-fire {
        display: none;
    }

    .mainfooter {
        width: 100%;
        margin: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-header {
        width: 100%;
        height: 6vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    
    .main-header h1 {
        margin: 0;
    }
    
    .language-select {
        margin-right: 0;
        width: 15vw;
        height: 2vh;
    }

    .ga {
        width: 100%;
        height: 90vh;
        display: flex;
        flex-direction: column;
    }
    
    .ga-left {
        width: 100%;
        height: 55vh;
        margin-bottom: 0.5rem;
    }
    
    #loadGameButton {
        width: 12vw;
       }

    .ga-left-info {
        flex-direction: row;
    }

    .game-info-container {
        width: 30%;
    }
    
    .game-info-container img {
        width: 2rem;
        height: 2rem;
    }
    
    .game-info-title {
        width: 30%;
    }

    .single-title {
        font-size: 1.2rem;
    }

    .game-info-title span {
        display: none;
    }
    
    .share-full {    
        width: 70%;
        justify-content: center;
    }
    
    .ga-right {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-left: 0;
        justify-content: space-around;
    }
    
    .new-game-card {
        width: 23vw;
    }

    .trending-game-card {
        width: 30vw;
    }

    .controls {
        width: 100%;
    }

    .recommend {
        width: 100%;
    }

    .recommend-games {
        justify-content: space-around;
    }

    .intro  {
        width: 100%;
    }

    .testimonials {
        width: 100%;
    }
    
    .testimonials-items {
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonials-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .faq {
        width: 100%;
    }

    .features {
        width: 100%;
    }
    
    .feature-items {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }
    
    .work {
        width: 100%;
    }

    .more {
        width: 100%;
    }

    .more-games {
        justify-content: space-around;
    }

    .hot-game-card {
        width: 30vw;
    }

    .footer-content {
        width: 100%;
    }
}


@media (min-width: 481px) and (max-width: 768px) {
    html, body {
        font-size: 16px;
    }

    .container {
        flex-direction: column;
    }

    .leftside {
        width: 100%;
        height: auto;
        margin-right: 0;
        position: relative;
    }

    header {
        justify-content: center;
    }
    
    nav {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5rem;
    }
    
    .nav-title {
        display: none;
    }
    
    .nav-items ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .nav-items a {
        width: 20%;
        height: 3vh;
        justify-content: center;
        margin-right: 0.5rem;
    }

    .fas.fa-bolt {
        display: none;
    }
    
    .fas.fa-star {
        display: none;
    }
    
    .fas.fa-fire {
        display: none;
    }

    .mainfooter {
        width: 100%;
        margin: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-header {
        width: 100%;
        height: 6vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    
    .main-header h1 {
        margin: 0;
    }
    
    .language-select {
        margin-right: 0;
        width: 15vw;
        height: 2vh;
    }

    .ga {
        width: 100%;
        height: 90vh;
        display: flex;
        flex-direction: column;
    }
    
    .ga-left {
        width: 100%;
        height: 55vh;
        margin-bottom: 0.5rem;
    }
    
    #loadGameButton {
        width: 12vw;
       }

    .ga-left-info {
        flex-direction: row;
    }

    .game-info-container {
        width: 30%;
    }
    
    .game-info-container img {
        width: 2rem;
        height: 2rem;
    }
    
    .game-info-title {
        width: 30%;
    }

    .single-title {
        font-size: 1.2rem;
    }

    .game-info-title span {
        display: none;
    }
    
    .share-full {    
        width: 70%;
        justify-content: center;
    }
    
    .ga-right {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-left: 0;
        justify-content: space-around;
    }
    
    .ga-right a {
        color: white;
        text-decoration: none;
    }

    .new-game-card {
        width: 23vw;
    }

    .trending-game-card {
        width: 30vw;
    }

    .controls {
        width: 100%;
    }

    .recommend {
        width: 100%;
    }

    .recommend-games {
        justify-content: space-around;
    }

    .intro  {
        width: 100%;
    }

    .testimonials {
        width: 100%;
    }
    
    .testimonials-items {
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonials-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .faq {
        width: 100%;
    }

    .features {
        width: 100%;
    }
    
    .feature-items {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }
    
    .work {
        width: 100%;
    }

    .more {
        width: 100%;
    }

    .more-games {
        justify-content: space-around;
    }

    .hot-game-card {
        width: 30vw;
    }

    .footer-content {
        width: 100%;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    html, body {
        font-size: 16px;
    }

    .container {
        flex-direction: column;
    }

    .leftside {
        width: 100%;
        height: auto;
        margin-right: 0;
        position: relative;
    }

    header {
        justify-content: center;
    }
    
    nav {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5rem;
    }
    
    .nav-title {
        display: none;
    }
    
    .nav-items ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .nav-items a {
        width: 20%;
        height: 3vh;
        justify-content: center;
        margin-right: 0.5rem;
    }

    .fas.fa-bolt {
        display: none;
    }
    
    .fas.fa-star {
        display: none;
    }
    
    .fas.fa-fire {
        display: none;
    }

    .mainfooter {
        width: 100%;
        margin: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-header {
        width: 100%;
        height: 6vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    
    .main-header h1 {
        margin: 0;
    }
    
    .language-select {
        margin-right: 0;
        width: 15vw;
        height: 2vh;
    }

    .ga {
        width: 100%;
        height: 75vh;
        display: flex;
        flex-direction: column;
    }
    
    .ga-left {
        width: 100%;
        height: 55vh;
        margin-bottom: 0.5rem;
    }
    
    #loadGameButton {
        width: 12vw;
       }

    .ga-left-info {
        flex-direction: row;
    }

    .game-info-container {
        width: 40%;
    }
    
    .game-info-container img {
        width: 2rem;
        height: 2rem;
    }
    
    .game-info-title {
        width: 100%;
    }
    
    .share-full {    
        width: 50%;
        justify-content: center;
    }
    
    .ga-right {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-left: 0;
        justify-content: space-around;
    }
    
    .new-game-card {
        width: 11vw;
    }

    .new-game-title {
        font-size: 0.8rem;
    }

    .trending-game-card {
        width: 15vw;
    }

    .controls {
        width: 100%;
    }

    .recommend {
        width: 100%;
    }

    .recommend-games {
        justify-content: space-around;
    }

    .intro  {
        width: 100%;
    }

    .testimonials {
        width: 100%;
    }
    
    .testimonials-items {
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonials-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .faq {
        width: 100%;
    }

    .features {
        width: 100%;
    }
    
    .feature-items {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }
    
    .work {
        width: 100%;
    }

    .more {
        width: 100%;
    }

    .more-games {
        justify-content: space-around;
    }

    .hot-game-card {
        width: 15vw;
    }

    .footer-content {
        width: 100%;
    }
}


@media (min-width: 1025px) and (max-width: 1200px) {
    header a {
        font-size: 1.2rem;
    }
    
    header img {
        width: 3rem;
        height: 3rem;
        margin: 0 1rem 0 1rem;
    }

    .single-title {
        font-size: 1rem;
    }

    .share-button span {
        font-size: 0.7rem;
    }

    .new-game-title {
        font-size: 0.8rem;
    }

    .trending-game-title {
        font-size: 0.8rem;
    }

    .hot-game-title {
        font-size: 0.8rem;
    }
}


@media (min-width: 1201px) and (max-width: 1440px) {
    header img {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 1rem 0 1rem;
    }

    .share-button span {
        font-size: 0.8rem;
    }

    .new-game-title {
        font-size: 0.8rem;
    }

    .trending-game-title {
        font-size: 0.8rem;
    }

    .hot-game-title {
        font-size: 0.8rem;
    }
}


@media (min-width: 1441px) {
    
}


  