* {
    -webkit-user-drag: none;
}

html {
    /* Prevent element highlighting on click or touch*/
  -webkit-tap-highlight-color:transparent;
}

section.video-section {   
    width: 100%;
    height: 90vh;
    
    position: relative;

    background-image: url("/static/img/background_faq.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

video.background-video {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-main-block {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;

    position: relative;
    z-index: 2;
}

h2.playGame-header {
    color: #f9f2b0;
    font-size: 50px;
    font-family: Friz-Quadrata, serif;
    font-weight: bold;
    text-align: center;
    text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

/* PLAFORMS BLOCK */
.platforms-block {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 160px);
    grid-gap: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;

    z-index: 10;
    position: absolute;
    bottom: 20px;
}

a.platforms-block_link {
    width: inherit;
    height: inherit;
}

a.platforms-block_link svg {
    transition: all .3s ease;
}

a.platforms-block_link:hover svg {
    scale: 1.1;
}

/* MEDIA-QUERIES */
@media screen and (max-width: 500px) {
    h2.playGame-header {
        font-size: 36px;
    }
}

@media screen and (max-width: 926px) {

    section.video-section {
        height: 100vh !important;
    }

    h2.playGame-header {
        font-size: 36px;
    }

    /* Hide play btn for mobile devices */
    button.playGame-btn {
        display: none !important;
    }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
    .platforms-block {
        grid-template-columns: repeat(2, 160px);
    }
}

/* @media screen and (min-width: 501px) and (max-width: 926px) {
    
    .video-main-block {
        gap: 100px 0;
        margin-bottom: 100px;
    }
    h2.playGame-header {
        margin-top: 100px;
    }
} */