.typewriter {
    color: hsl(212, 50%, 47%);
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 44px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/src/img/showcase.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.gamesm {
    background: radial-gradient(#131c27 0%, #12151f 100%);
    padding: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.sup {
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.games {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 70px;
}

.game-card {
    border-radius: 15px;
    padding: 10px;
    width: 460px;
    height: 460px;
    background-color: #1b2735;
    transition: all 0.8s !important;
}

.game-card:hover {
    background-color: #304359;
}

.game-card img {
    border-radius: 15px;
    border: 2px solid white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
}

  .showcase-v {
    background: radial-gradient(#131d28 0%, #080b0f 100%);
    color: #3c74b3;
    padding: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-a {
    font-size: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 20px;
    border: 2px #3c74b3 solid;
    text-decoration: none;
    color: #3c74b3;
    transition: all 0.8s;
}

.v-a:hover {
    background-color: rgb(16, 30, 43);
}

.buy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: radial-gradient(#25374e 0%, #040507 100%);
}

.buy-btn {
    position: relative;
    top: 10px;
    font-size: 25px;
    text-align: center;
    border-radius: 4px;
    padding: 20px;
    border: 3px #3c74b3 solid;
    text-decoration: none;
    color: #3c74b3;
    transition: all 0.8s;
    background-color: rgb(20, 35, 50);
}

.buy-btn:hover {
    border: 3px #1d3654 solid;
    background-color: rgb(16, 30, 43);
    color:  #4f729a;
}

.less {
    position: relative;
    bottom: 20px;
}

@media (max-width: 1200px) {
    .showcase-v {
        display: flex;
        flex-direction: column;
    }

    .v-a {
        position: relative;
        top: 80px;
    }
    video {
        position: relative;
        bottom: 150px;
        width: 430px;
        height: auto;
    }
  }
  
@media (max-width: 880px) {
    .typewriter {
        font-size: 34px;
    }
    .games {
        overflow: auto;
        white-space: nowrap;
        display: flex;  
        flex-direction: row;
        justify-content: left;
        align-items: start;
        gap: 10px;
        text-align: center;
        margin-bottom: 70px;
    }
    video {
        position: relative;
        bottom: 150px;
        width: 330px;
        height: auto;
    }
} 