@charset "utf-8";

#content-desktop {display: block;}
#content-mobile {display: none;}

@media screen and (max-width: 768px) {

#content-desktop {display: none;}
#content-mobile {display: block;}

}
.bg-desktop {
    background-image: url("images/bg.png");
    height: 100%;
    background-position: center;
    background-repeat: repeat;
	background-color: #292522;
}
.bg-mobile {
    background-image: url("images/bg.png");
    height: 180%;
    background-position: center;
    background-repeat: repeat;
	background-color: #292522;
}
.Logo {
	position: absolute;
	left: 50%;
	top: 15%;
	transform: translate(-50%, -15%);
	max-width: 100%
}
.LogoMobile {
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translate(-50%, -15%);
    max-width: 100%;
}
.Button {
	position: absolute;
	left: -85%;
	top: 120%;
	width: 750px;
	text-align: center;
	font-family: sans-serif;
}
.ButtonMobile {
    position: absolute;
    left: -28%;
    top: 120%;
	width: 276px;
	text-align: center;
	font-family: sans-serif;
}