@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
	}

body, html {
	height: 100%;
}

body {
	margin: 0;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 30% 7% 63%;
	grid-template-areas: 
		"cat"
		"nav"
		"main";
		
		
}

header {
	background-image: url("images/cat02.png");
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	grid-area: cat;
	
}

.nav__links {
	
	
	list-style: none;
	
}
.nav__links li {
	align-self: flex-start;
	display: inline-block;
	padding: 0px 25px;
	
	
}

.nav__links li a {
	transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
	opacity: 50%;
}
nav {
	display: inline-block;
	}


section:nth-of-type(1) {
	grid-area: nav;
	width: 74%;
	padding-left: 5%;
	justify-self: center;

	
}

.img_mc {
	width: 40%;
}
.img_game {
	width: 80%;
}
.img_nav {
	width: 130%;
}

/*img {
	width: 23%;*/
}
.illustration {
	margin: 0px 300px;
	align-self: center;
}

.illustration img {
	transition: .6s;
	justify-content: space-between;
	
	
}

.illustration img:hover {
	filter: grayscale(100%);
	transform: scale(1.1);
}

main {
	grid-area: main;
	
}


.logo {
	width: 100%;
}

.logo img{
	width: 80%;
    
}

.logo a:hover {
	filter: brightness(1.3);
	transition: 0.35s ease;
	
}

.logo img:hover {
    transform: scale(1.02);
    transition: 0.35s ease;
}

/*section:nth-of-type(2) {
	
	grid-area: logo;
	
	
	
	
	
	
	
}*/

.foot {
	grid-area: footer;
	height: 60px;
	font-family: "montserrat", sans-serif;
	font-weight: 550;
	font-size: 16px;
	color: #005EA2;
	text-decoration: none;
	
}

body {
	background-image: url("images/logobkgd.jpg");
	background-size: cover;
	background-repeat: repeat;
	background-position: center;
}

.loader-wrapper {
    width: 100%;
    height: 500%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #505380;
  left: 50%;
    top: 10%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #505380;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}





