@charset "utf-8";
/* CSS Document */
html, body {
	height: 100%;
    margin: 0px;
    padding: 0px;
}
body{
	background-color: #4F4F4F;
	 background-repeat: no-repeat;
  	background-size: 45%;
	background-position: center;
	display: grid;
    grid-template-columns: 20% 1fr 25%;
    grid-template-rows: 10% 50px 1fr 8%;
    grid-template-areas:
		"nav    nav    nav"
		"header header header"
        "main   main   main"
		"desc   desc   desc"
        "footer footer footer";
}
footer{
	grid-area: footer;
}
.nav-button {
    position: absolute;
	float: left;
    right: 30px;
    top: 30px;
    z-index: 999999;
    cursor: pointer;
    color: white;
    font-size: 4rem;
    transition: 100ms;
}

.nav-button:hover {
     max-height: max-content;
	background: -webkit-linear-gradient( 90deg, red 35%, #22ff00 45%, blue 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
}

#nav-trigger {
    display: none;
}
.logo{
	display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    width: center;
}
nav {
	grid-area: nav;
    width: 100vw;
    height: 100vh;
    padding: 100px 0px;
    background-color: black;
    opacity: 0;
    transform: translateY(-100vw);
    transition: 750ms;
	z-index: 99999;
}

nav ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    list-style-image: none;
}

nav ul li {
    display: block;
}

nav ul li a {
    display: block;
    width: 100vw;
    font-family: acier-bat-noir, sans-serif;
	font-weight: 400;
	font-style: normal;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 4rem;
    padding: 25px 0px;
    text-transform: uppercase;
    transition: 10ms;
}

nav ul li a:hover {
    background-color: white;
    color: black;
}
.purple:hover{
	background-color:#A100FF;
}
.red:hover{
	background-color: #FF0004;
}
.green:hover{
	background-color: #22FF00;
}
.blue:hover{
	background-color: #0074FF
}
header{
	grid-area: header;
}
h1{
	font-family: acier-bat-noir, sans-serif;
	font-weight: 400;
	font-style: normal;
    	max-width: max-content;
	background: -webkit-linear-gradient(0deg, red 0%, #a100ff 33%, #22ff00 66%, blue 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	linear-gradient: (red, #a100ff, #22ff00, blue);
    text-decoration: none;
    text-align: center;
    font-size: 7rem;
	margin-left: auto;
	margin-right:auto;
	width: 100%;
	margin-top: -.5em;
	display: block;

	
}
input[type="checkbox"]:checked ~ nav {
    opacity: 1;
    transform: translateY(0vw);
}
main{
	grid-area: main;
	
}
.description{
	font-family: fort, sans-serif;
	font-weight: 500;
	font-style: normal;
	color: white;
    text-decoration: none;
    text-align: center;
	font-size: 3rem;
	padding-top: 5%;
	margin-left: auto;
	margin-right:auto;
	width: 75%;
	display: block;
}
img {
  vertical-align: middle;
}


.container {
	margin-left: auto;
	margin-right: auto;
	grid-area: main;
	width: 70%;
	height: 50%;
  	position: relative;
}


.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}


.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
  color: white;
	font-family: fort, sans-serif;
	font-weight: 500;
  font-size: 1em;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 16.66%;
}

.demo {
	outline-style: solid;
	outline-width: 1px;
	outline-color: #ff0004;
  opacity: 0.6;
}

.tano{
	grid-area: main;
	font-family: fort, sans-serif;
	font-weight:500;
	color: white;
	margin-top: 53%;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	height: 25%;
	font-size: 2em;
}
.footer{
	grid-area: footer;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	text-align: center;
	font-family: fort, sans-serif;
	color: white
}
.buy{
	font-family: fort, sans-serif;
	font-weight: 700;
	text-decoration: none;
	color: white;
	position: relative;
	font-size: 3em;
	margin-top: 78%;
	text-align: center;
	grid-area: main;
	margin-left: auto;
	margin-right: auto;

}
.buy:hover{
	color: #ff0004;
}
.footer a{
	text-decoration: none;
	color: white;
	
}
.footer a:hover{
	max-width: max-content;
	background: -webkit-linear-gradient(0deg, red 0%, #a100ff 33%, #22ff00 66%, blue 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	linear-gradient: (red, #a100ff, #22ff00, blue);
}
.project{
	grid-area: footer;
}
.sources{
	grid-area: footer;
}
@media only screen and (max-width: 640px) {
    
    body {
		background-size: 100%;
        grid-template-columns: 100%;
        grid-template-areas:
			"nav"
            "header"
            
            "main"
            "footer";
    }
	.description{
		font-size: 2.15em;
		padding-top: 1em;
	}
	.footer{
		font-size: .5em;
	}
	.prev,
.next {
	top: 20%;
	}
	h1{
		font-size: 3.5em;
		width: 90%;
		margin-top: -.5em;
	}
	.container{
		margin-top: -4em;
		top: 10%;
	}
	.tano{
		font-size: 1em;
	}
	.buy{
		font-size: 1.9em;
	}
	.nav-button{
		font-size: 3em;
	}
}


@media (min-width: 640px) and (max-width: 1080px){
	body{
		background-size: 80%;
	}
	.description{
		font-size: 2.5em;
		padding-top: 5%;
	}
	h1{
		font-size: 4em;
		width: 80%;
		margin-top: -.5em;
	}
	.tano{
		margin-bottom: 10px;
		height: 50%;
		font-size: 1.5em;
	}
	.footer{
		font-size: 1em;
	}
	.buy{
		font-size: 2.5em;
		margin-top: 84%;
	}
	.nav-button{
		font-size: 3em;
	}
}
