@import url('https://api.fontshare.com/css?f[]=general-sans@300,700&display=swap');

* {
	margin:0;
	padding:0;
}

/* GADGETS */
::selection {
    background: black;
}

body{
	font-family: 'General Sans', sans-serif;
    background-color:#222;
    color:#121212;
}

a{
	text-decoration: none;
}

#logo{
	position: absolute;
	z-index: 50;
	top: calc(-25vh + 8vw);
	width: 100vw;
	min-height: 50vh;
	background-image: url(../img/logo.svg?rld);
	background-size: 50% 100%;
	background-repeat: repeat-x;
	background-position: right center;
	
	-webkit-animation: DEFILE 10s linear infinite; /* Safari 4+ */
	-moz-animation:    DEFILE 10s linear infinite; /* Fx 5+ */
	-o-animation:      DEFILE 10s linear infinite; /* Opera 12+ */
	animation:         DEFILE 10s linear infinite; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes DEFILE {
    0% { 	background-position: right center; }
		100% {	background-position: left center; }
}
@-moz-keyframes DEFILE {
    0% { 	background-position: right center; }
		100% {	background-position: left center; }
}
@-ms-keyframes DEFILE {
    0% { 	background-position: right center; }
		100% {	background-position: left center; }
}
@-o-keyframes DEFILE {
    0% { 	background-position: right center; }
		100% {	background-position: left center; }
}
@keyframes DEFILE {
    0% { 	background-position: right center; }
		100% {	background-position: left center; }
}

#socials{
	position: absolute;
	bottom: 3vh;
	z-index: 99;
	width: 100%;
	text-align: center;
	font-weight: 700;
}

.social{
	display: inline-block;
	color: #f8f43e;
	text-shadow: 2px 2px black;
	text-transform: uppercase;
	padding: 5px 0;
	font-size: 2vw;
	margin: 0 0.5vw;
	width: 17vw;
}

.social:hover{
	color: white;
}

#footer{
	position: absolute;
	width: 100%;
	top: 100vh;
	z-index: 98;
	background-color: #222;
	padding: 50px 0;
	text-transform: uppercase;
	font-weight: bolder;
	font-style: italic;
	text-align: center;
	font-size: 11px;
	color: #f8f43e;
	text-shadow: 2px 2px black;
}
#footer p{
	max-width: 340px;
	margin: 0 auto;
}

#cookie {
  text-align: right;
  display: inline;
  padding: 0 15px 15px 0;
}
#cookie a {
  color: var(--global);
  text-decoration: none;
  font-size: 9px;
  margin: 0 5px;
}
#cookie a:hover {
    text-decoration: underline;
}









#video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  z-index: -1;
  overflow: hidden;
}

#video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

video::-webkit-media-controls {
  display: none;
}










@media screen and (max-width: 700px) {
	#footer{
		top: 100vh;
		z-index: 99;
	}
}

