:root {
    --c-amas-blue: #071011;
}

.bg-color-amas-blue {
    background-color: var(--c-amas-blue) !important;
}

.bg-image {
    background-image: url(../../res/game_amas/amas_bg.png);
    background-position-x: 490px;
    background-attachment: fixed;
}
.bg-image::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(90deg, var(--c-green) 25%, transparent 75%); */
    background-image: linear-gradient(90deg, var(--c-amas-blue) 25%, transparent 75%);
}

#page-container {
    align-items: flex-start;
    margin-top: 15%;
}

#amas-title {
    z-index: 1;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    width: 40%;
}

.amas-description {
    z-index: 1;
    color: white;
    width: 40%;
    padding: 0 5%;
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
}

.amas-last-item {
    margin-bottom: 50px;
}

a.amas-link {
    color: lightgray;
}

a.amas-link:hover {
    color: gray;
}

.game-container {
    z-index: 1;
    margin: 15% 10% 5% 10%;
    width: 80%;
    display: flex;
}

#iframe_btn {
    width: 100%;
}

#game_iframe {
    display: none;
    width: 100%;
    height: 720px;
}

@media screen and (min-width: 1700px) {
    #page-container {
        justify-content: center;
    }
    #page-container .h-seperator-120 {
        margin: 0;
    }
}

@media screen and (max-width: 1700px) {
    .amas-page-container {
        align-items: center !important;
    }
}

@media screen and (max-width: 1600px) {
    .bg-image {
        background-position-x: 0;
        background-position: center;
    }
}

@media screen and (max-width: 1200px) {
    #amas-title {
        width: 60%;
    }

    .amas-description {
        width: 60%;
    }
}

@media screen and (max-width: 800px) {
    #amas-title {
        width: 80%;
    }

    .amas-description {
        width: 80%;
        padding: 0;
    }
}

@media screen and (max-width: 450px) {
    #amas-title {
        font-size: 1.5rem;
    }

    .amas-description {
        font-size: 1.0rem;
    }
}