#backgroundImg
{
    width: 100%;
    height: 46vw;
    object-fit: cover;
}

#gameLogo
{
	margin-right: 16px;
	padding: 5px;
}

#titleDiv
{
    width: 100%;
    max-height: 175px;

    margin-top: -200px;
	padding: 8px;
	padding-left: 10%;
	padding-right: 10%;

	box-sizing: border-box;
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: center;

	backdrop-filter: blur(10px)
}

#gameTitle
{
	font-family: arcadeFont;
}

#gameTitle, #titleDiv p
{
    font-size: 50px;

    text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
    color: var(--white-color-1);

    text-align: center;
}

#gameTitle button
{
	background-color: transparent;
	border: 0;

	margin-right: 32px;

	cursor: pointer;
}

#gameTitle button img
{
	width: 40px;
	height: 40px;
}

#titleDiv p
{
    font-size: 20px;
}

.module
{
    width: 100%;
    background-color: var(--white-color-1);
}

.module:nth-child(4n)
{
    background-color: var(--white-color-2);
}

.inModule
{
    width: 1300px;
    margin: auto;
}

.transi
{
    width: 100%;
    height: 16px;

    margin: auto;
    background: linear-gradient(var(--white-color-1), var(--white-color-2));
}

.transi:nth-child(4n+1)
{
    background: linear-gradient(var(--white-color-2), var(--white-color-1));
}

.inModule h2
{
    text-align: center;
    font-size: 50px;
}

#trailerContain
{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    
    margin-top: 8px;
    margin-bottom: 8px;
}

#trailer
{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}

.inModule p
{
    text-align: center;
    margin-top: 8px;
}

#dlBtn
{
    position: relative;
	display: flex;
    justify-content: center;

    width: 300px;
	
	margin: auto;
    margin-top: 64px;
    margin-bottom: 64px;
	padding: 8px;

    border: 4px solid var(--blue-1);
    background-color: var(--blue-1);
    color: var(--white-color-1);

    cursor: pointer;

    font-size: 20px;
    font-weight: 1000;

    overflow: hidden;
}

#dlBtn:hover
{
    border: 4px solid var(--blue-2);
    background-color: var(--blue-2);
}

/* share */

.share h1 {
	text-align: center;
}

.share-container {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	max-width: 700px;
	margin: 0 auto;
    padding-bottom: 8px;
}
	.share-container > div {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 5px;
	}

.share-button {
	width: 90%;
	min-height: 30px;
	height: 100%;
	color: white;
	font-size: 12px;
	border-radius: 2px;
	cursor: pointer;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
	-webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 5px;
}
	.share-button i {
		font-size: 2em;
	}

/** Hide text on small screens **/
@media all and (max-width: 520px) {
	.share-button span {
		display: none;
	}
}
/** Remove from Desktops i.e. whatsApp**/
@media screen and (min-width: 700px) {
    .share-button-hide {
		display: none !important;
    }
}


/** Social button colors **/
.share-button-twitter {
	background: #00aced;
}

.share-button-twitter:hover,
.share-button-twitter:active 
{
	background: #0084b4;
}

.share-button-facebook {
	background: #3B5997;
}

.share-button-facebook:hover,
.share-button-facebook:active 
{
	background: #2d4372;
}

.share-button-googleplus {
	background: #D64937;
}

.share-button-googleplus:hover,
.share-button-googleplus:active 
{
	background: #b53525;
}

.share-button-whatsapp {
	background: #43d854;
}

.share-button-whatsapp:hover,
.share-button-whatsapp:active 
{
	background: #009688;
}

/* header 2 */

#botHeader
{
	background-color: var(--black-color-2);

	position: fixed;

	width: 100%;
	height: 60px;

	top: 50px;

	display: flex;
	justify-content: space-between;

	z-index: 50;
}

#botHeader div
{
	display: flex;
	justify-content: center;
}

#botHeader div a
{
	width: 300px;

	border: 0;
	background-color: transparent;
	color: var(--white-color-1);

	cursor: pointer;

	text-decoration: none;

	display: flex;
	justify-content: center;
	align-items: center;
}

#botHeader div a:hover
{
	background-color: var(--white-color-1);
	color: var(--black-color);
}

#botHeader button
{
	border: 0;
	background-color: var(--blue-1);
	color: var(--white-color-1);

	padding: 4px 24px;
	margin: 5px;

	cursor: pointer;
}

#botHeader button:hover
{
	background-color: var(--blue-2);
}