@charset "utf-8";
/* CSS Document */
html, body {
	height: 100vh;
    margin: 0px;
    padding: 0px;
}
body{
background-image: -webkit-linear-gradient(#8B0000 0%, #301934 25%, #023020 50%, #191970 75%, #8B0000 100%);
background-image: -o-linear-gradient(#8B0000 0%, #301934 25%, #023020 50%, #191970 75%, #8B0000 100%);
background-image: linear-gradient(#8B0000 0%, #301934 25%, #023020 50%, #191970 75%, #8B0000 100%);
  	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"
        "footer footer footer";
}
footer{
    grid-area:footer;
}
.nav-button {
    position: absolute;
	float: left;
    right: 30px;
    top: 30px;
    z-index: 10000;
    cursor: pointer;
    color: white;
    font-size: 4rem;
    transition: 100ms;
}

.nav-button:hover {
      max-height: max-content;
	background: -webkit-linear-gradient( 90deg, red 35%, #22ff00 40%, blue 70%);
	-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;
}

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;
}
  .footer{
	grid-area: footer;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	text-align: center;
	font-family: fort, sans-serif;
	color: white
}
.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: 700px) {
    
    body {
		background-size: 100%;
        grid-template-columns: 100%;
        grid-template-areas:
			"nav"
            "header"
            
            "main"
            "footer";
    }
	.description{
		font-size: 1.7em;
		padding-top: 1em;
	}
	h1{
		font-size: 4.75em;
		width: 90%;
		margin-top: -.5em;
	}
	.nav-button{
		font-size: 3em;
	}
  
}


@media (min-width: 700px) and (max-width: 1080px){
	body{
		background-size: 80%;
	}
	.description{
		font-size: 2em;
		padding-top: 5%;
	}
	h1{
		font-size: 5em;
		width: 80%;
		margin-top: -.5em;
	}
	.nav-button{
		font-size: 3em;
	}
}
