@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;600;700&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}


html,body {
	max-width: 100vw;
	max-height: 100vh;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	background: #000;
	color: #990000;
	overflow-x: hidden;
	overflow-y: hidden;
	z-index: 0;
}

main {
    min-height: 100vh;
}

a {
	color: #990000;
	text-decoration: none;
	text-transform: uppercase;
}

a:hover{
	font-weight: bolder;
}

h1 {
	text-transform: uppercase;
}

h2 {
	text-transform: uppercase;
}

p {
	font-size: 1rem;
	color: gray;
	text-align: center;
}

.container {
	max-width: 100vw;
	width: 100%;
	z-index: 1;
  }
  
  .navbar {
	width: 100vw;
  }
  
  .nav-container {
	display: block;
	position: relative;
	justify-content: space-between;
	align-items: center;
	height: 10.625rem;
  }

  .navbar .menu-items {
	display: flex;
  }
  
  .navbar .nav-container li {
	list-style: none;
  }
  
  .navbar .nav-container a {
	text-decoration: none;
	text-transform: uppercase;
	color: #990000;
	font-weight: 400;
	font-size: 2rem;
	padding: 0.7rem;
  }
  
  .navbar .nav-container a:hover{
	  font-weight: bolder;
  }

  .navbar .nav-container a:target{
	transition: all 1.8s ease;
  }
  
  .nav-container .checkbox {
	position: absolute;
	display: block;
	height: 2rem;
	width: 2rem;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 5;
	opacity: 0;
	cursor: pointer;
  }
  
  .nav-container .hamburger-lines {
	display: block;
	height: 1.625rem;
	width: 2rem;
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  
  .nav-container .hamburger-lines .line {
	display: block;
	height: 0.25rem;
	width: 100%;
	border-radius: 0.625rem;
	background: #990000;
  }

  .nav-container .hamburger-lines .line1 {
	transform-origin: 0% 0%;
	transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
	transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
	transform-origin: 0% 100%;
	transition: transform 0.4s ease-in-out;
  }
  
  .navbar .menu-items {
	padding-top: 7.5rem;
	background-color:  rgba(0, 0, 0, 0.85);
	height: 100vh;
	width: 100%;
	transform: translate(150%);
	display: flex;
	flex-direction: column;
	transition: transform 0.5s ease-in-out;
	text-align: center;
  }
  
  .navbar .menu-items li {
	margin-bottom: 1.2rem;
	font-size: 2rem;
	font-weight: 500;
  }
  
  .logo {
	position: absolute;
	/*min-width: 16rem;*/
	max-width: 24rem;
	margin-top: 0.8rem;
	margin-right: 0rem;
	margin-bottom: 0rem;
	margin-left: 1rem;
	cursor: pointer;
  }
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
	transform: translateX(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
	transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
	transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
	transform: rotate(-45deg);
  }
  
  /*.nav-container input[type="checkbox"]:checked ~ .logo{
	display: none;
  }*/



.landing-page {
	
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-height: 100vh;
	margin-left: 2vw;
	margin-right: 2vw;
	margin-top: 1rem;
	margin-bottom: 1rem;
	
}

.landing-page .hero {
	position: relative;
	top: -150px;
	max-height: 88vh;
	/*max-width: 80vw;*/
	margin-top: 0rem;
	margin-right: 0rem;
	margin-bottom: 2rem;
	margin-left: 0rem;
}

.landing-page ul {
	position: fixed;
	bottom: 0;
	margin-top: 1rem;
	margin-right: 0rem;
	margin-bottom: 1rem;
	margin-left: 0rem;
	z-index: 1;
}

.landing-page ul li a {
	font-size: 1rem;
}



@media only screen and (max-width: 1920px) {
	
		.landing-page .hero {
			max-height: 70vh;
		}

		.logo {max-width: 22rem;}
}

@media only screen and (max-width: 1440px) {
	
	.landing-page .hero {
		top: -50px;
	}
	.logo {max-width: 20rem;}
}

@media only screen and (max-width: 1080px) {
	
	.landing-page .hero {
		top: 0px;
		max-width: 90vw;
	}
	.logo {max-width: 19rem;}
}

@media only screen and (max-width: 860px) {
	
	.landing-page .hero {
		max-height: 60vh;
		top: 0px;
	}
	.logo {max-width: 18rem;}
}

@media only screen and (max-width: 700px) {
	
	.landing-page .hero {
		max-width: 80vw;
		top: 50px;
	}
	.landing-page ul li a {
		font-size: 1.2rem;
	}

}

@media only screen and (max-width: 368px) {
	
	.logo {
		max-width: 8rem;
		min-width: 5rem;
	}
	}

@media only screen and (max-height: 600px) {
	
	
	
	.navbar .nav-container a {
		text-decoration: none;
		text-transform: uppercase;
		color: #990000;
		font-weight: 400;
		font-size: 1rem;
		padding: 0.2rem;
	  }

	  .navbar .menu-items {
		padding-top: 0.5rem;
		background-color:  rgba(0, 0, 0, 0.85);
		height: 100vh;
		width: 100%;
		transform: translate(150%);
		display: flex;
		flex-direction: column;
		transition: transform 0.5s ease-in-out;
		text-align: center;
	  }

	  .navbar .menu-items li {
		margin-bottom: 0.5rem;
		font-size: 2rem;
		font-weight: 500;
	  }

	  .logo{
		max-width: 12rem;
	  }

	  .landing-page .hero {
		position: relative;
		top: -75px;
		max-height: 70vh;
		/*max-width: 80vw;*/
		margin-top: 0rem;
		margin-right: 0rem;
		margin-bottom: 2rem;
		margin-left: 0rem;
	}
}
