body {
    background: black url("gfx/background.jpg") no-repeat center center fixed;

    background-size: 100%;
    background-size: cover;
}

div.full-page {
    min-height: 100%;
    min-height: 100vh;
}

div.box * {
    display: flex;
}

div.box {
    display: flex;
    background-color: rgba(40,40,50,0.6);
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid rgba(40,40,50, 0.1);
}

div.box .img {
    flex-direction: row;
    justify-content: center;
    max-height: 25vh;
}

div.box img {
    height: auto;
    width: auto;
    object-fit: contain;
    max-width: 90%;
}

div.box .text {
    flex-direction: column;
    text-align: center;
    flex: 1;
    color: rgba(240,240,240,0.89);
}

div.box .text h1, div.box .text h2 {
    justify-content: center;
}

div.box .text h2 {
    font-size: 1em;
    color: rgba(220,220,220,0.89);
    text-transform: uppercase;
}

div.box .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.fade-in-top {
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-4-7 18:5:7
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


/* Style the video: 100% width and height to cover the entire window */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
}

/*@media (max-width: 576px) {*/
/*    body {*/
/*        background: black url("gfx/background-small.jpg") no-repeat center center fixed;*/
/*        background-size: 100%;*/
/*        background-size: cover;*/
/*    }*/
/*}*/

/*@media (min-width: 576px) {*/
/*    body {*/
/*        background: black url("gfx/background-medium.jpg") no-repeat center center fixed;*/
/*        background-size: 100%;*/
/*        background-size: cover;*/
/*    }*/
/*}*/


/*@media (min-width: 768px) {*/
/*    body {*/
/*        background: black url("gfx/background-sd.jpg") no-repeat center center fixed;*/
/*        background-size: 100%;*/
/*        background-size: cover;*/
/*    }*/
/*}*/


/*@media (min-width: 992px) {*/
/*    body {*/
/*        background: black url("gfx/background-768p.jpg") no-repeat center center fixed;*/
/*        background-size: 100%;*/
/*        background-size: cover;*/
/*    }*/
/*}*/


/*@media (min-width: 1200px) {*/
/*    body {*/
/*        background: black url("gfx/background-1080p.jpg") no-repeat center center fixed;*/
/*        background-size: 100%;*/
/*        background-size: cover;*/
/*    }*/
/*}*/

