/**************     Landing Page - 05   ***************/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  min-width: 100%;
  height: 100%;
}

body {
  background-color: #3f051d;
}

body.n main {
  background: url("img/n/desktop.jpg") top center no-repeat;
  background-size: cover;
}

body.n main.fr {
  background: url("img/n/desktop_FR.jpg") top center no-repeat;
  background-size: cover;
}

body.s main {
  background: url("img/s/desktop.jpg") top center no-repeat;
  background-size: cover;
}

body.s main.fr {
  background: url("img/s/desktop_FR.jpg") top center no-repeat;
  background-size: cover;
}

body main {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
  justify-content: center;
	position:absolute;
	bottom: 0;
}

body main #buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	justify-content:space-around;
	align-content: center;
}

body main #buttons a {
  display: block;
  max-width: 300px;
  margin-top: 30px;
}

body main #buttons a img {
  width: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

body main #buttons a:first-child img {
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}

body {
  overflow: hidden;
}

.page-landing>#contains_all>.title {
	position: absolute;
	top: 30px;
	width: 100%;
	font-size: 48px;
	color: white;
	font-family: 'Luckiest Guy', cursive;
	text-align: center;
	text-shadow : 2px 2px 0 #b14, -2px 2px 0 #b14, -2px -2px 0 #b14, 2px -2px 0 #b14, 2px -2px 0px #b14;
}

.page-landing>#contains_all>.title_bg {
	position: absolute;
	background-image: url('./files/blur-bar.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 90px;
	width: 100%;
	font-size: 22px;
	color: #bb1144;
	font-family: 'Luckiest Guy', cursive;
	text-align: center;
}

.page-landing>#contains_all>.bottom>button>a { color: white; text-decoration: none; }
.page-landing>#contains_all>.bottom>img {
	width: 200px;
	margin: 0 17%;
}

.blue_text_button {
	border-radius: 7px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}

.fixed_scaled {
	width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0 !important;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

body .bottom {
	position: absolute;
	top: 65% ;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3em;
	left:42%;
	right:42%;
}

body .bottom a {
  display: block;
  max-width: 300px;
  margin-top: 30px;
}

body .bottom a img {
  width: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

body .bottom a:first-child img {
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}

@media only screen and (max-width: 1024px) {
  body .bottom{
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin: 0 !important;
  }

	body.n main {
    background: url("img/n/mobile.jpg") top center no-repeat;
    background-size: cover;
  }

  body.n main.fr {
    background: url("img/n/mobile_FR.jpg") top center no-repeat;
    background-size: cover;
  }

  body.s main {
    background: url("img/s/mobile.jpg") top center no-repeat;
    background-size: cover;
  }

  body.s main.fr {
    background: url("img/s/mobile_FR.jpg") top center no-repeat;
    background-size: cover;
  }

  body main {
    margin: 0 auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 2em;
    padding-bottom: 0.5em;
  }

  body main  #buttons {
    -webkit-box-pack: center;
		-ms-flex-pack: center;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
	body.n main {
    background: url("img/n/desktop.jpg") bottom center no-repeat;
    background-size: cover;
  }

  body.n main.fr {
    background: url("img/n/desktop_FR.jpg") bottom center no-repeat;
    background-size: cover;
  }

  body.s main {
    background: url("img/s/desktop.jpg") bottom center no-repeat;
    background-size: cover;
  }

  body.s main.fr {
    background: url("img/s/desktop_FR.jpg") bottom center no-repeat;
    background-size: cover;
  }

 	#buttons {
    margin-bottom: 0 !important;
  }

   #buttons a {
    width: 100%;
    max-width: 250px;
  }

   #buttons a img {
    max-width: 250px;
    width: 100%;
    -webkit-transition: all 1s;
    transition: all 1s;
  }

   #buttons a:first-child img {
    -webkit-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
  }

  .bottom {
    margin-bottom: 0 !important;
  }

  .bottom a {
    width: 100%;
    max-width: 250px;
  }

	.bottom a img {
    max-width: 250px;
    width: 100%;
    -webkit-transition: all 1s;
    transition: all 1s;
  }

  .bottom a:first-child img {
    -webkit-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
