body {
    background-color: rgb(7, 7, 30);
    background-image: url("./images/bg_tex.webp");
    background-attachment: fixed;
    background-position: center center  ;
    /*min-width: 768px;
    _width: expression( document.body.clientWidth < 768 ? "768px" : "auto" ); /* sets max-width for IE6 */
}

header {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: auto;
    overflow: hidden;
    z-index: 0;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-filter: blur(4px);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(7, 7, 30);
    opacity: 0.5;
    z-index: 1;
}

@media (pointer: coarse) and (hover: none) {
    header {
        background: url('./images/bg_middle.jpg') black no-repeat center center scroll;
        background-size: cover;
    }
    header video {
        display: none;
    }
}

.overlay-image {
    transform: translate(0%,-100%);
    z-index: 3;
    visibility: expression( document.body.clientWidth < 768 ? none : inherit );
}

hr {
    color: seashell;
}

.orb-link {
    color: inherit;
    opacity: .5;
    text-align: center;
    vertical-align: center;
    transform: scale(1);
    transition: 0.33s ease-in-out;
}

.orb-link:hover {
    color: inherit;
    opacity: 1.0;
}

.newsletter {
    background-image: url(./images/bg_middle.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 3;
}

footer {
    z-index: 5;
    color: rgba(255, 255, 255, .5);
    background-color: rgba(7, 7, 30, 0.33)
}

.obj-gray {
    -webkit-filter: grayscale(.85);
    transition: 0.33s ease-in-out;
}

.obj-gray:hover {
    -webkit-filter: grayscale(0.0);
}

.btn-custom {
    opacity: .66;
    transform: scale(.95);
    transition: 0.33s ease-in-out;
}

.btn-custom:hover {
    opacity: 1;
    transform: scale(1);
}

.img-shake:hover {
    animation: shake .66s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    10% { transform: translate(0px, -1px) rotate(-1deg); }
    20% { transform: translate(-2px, 0px) rotate(0deg); }
    30% { transform: translate(1px, 0px) rotate(1deg); }
    40% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(0px, 1px) rotate(-1deg); }
    60% { transform: translate(-2px, 0px) rotate(0deg); }
    70% { transform: translate(2px, 0px) rotate(1deg); }
    80% { transform: translate(0px, 0px) rotate(0deg); }
    90% { transform: translate(0px, 1px) rotate(-1deg); }
    100% { transform: translate(0px, -1px) rotate(0deg); }
  }

@media only screen and (max-width: 425px) {
	.fa-2x {
		font-size: 5vw;
	}
}

@media only screen and (max-width: 1024px) {
	.rrss-custom {
        margin-top: -18vw;
        margin-bottom: -2em;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1920px) {
	.rrss-custom {
        margin-top: -24vh;
        margin-bottom: 1em;
    }
    
    #trailer {
        scroll-margin-top: 6.5em ;
    }

    #features, #discord, #newsletter {
        scroll-margin-top: -.75em ;
    }
}

/* Mailchimp CSS */
#mc_embed_signup{
    background: rgba(255, 255, 255, 1);
    clear:left;
    font:14px Helvetica, Arial, sans-serif;
    -webkit-filter: opacity(.90);
}

/* Scrollbar */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 8px rgba(7, 7, 30, 0.33);
    background-color:  rgb(33, 33, 55);
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 8px;
    border-radius: 10px;
	background-color: rgb(33, 33, 55);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
	background-color: rgb(7, 7, 30);
}