:root {
	--black: #030303;
	--white: #FBFBFB;
	--red: #DC2121;
	--grey: #4E4B4B;
}

body{
	background: var(--black);
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin: 0 auto;
}

/*--- nav section ---*/
nav {
	background-color: var(--black);
	color: var(--white);
	height: 150px;
}

.nav-con {
	/*display: grid;
	grid-template-rows: (2, 1fr);*/
	display: flex;
	justify-content: flex-start;
	height: 150px;
	align-items: center;
	font-size: 3rem;
	margin-top: 2rem;
}

.menu {
	justify-content: flex-end;
	margin: 0 0 0 0;
}


ul.menu {
	display: flex;
	list-style: none;
}

ul.menu li {
	margin: 0 1rem;
}

ul.menu li a {
	color: var(--white);
	text-decoration: none;
	font-size: 1rem;
	
}

/*--- nav section ---*/
footer {
	height: auto;
	background: var(--black);
	padding: 4rem 0;
	
}

.footer-con {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	color: var(--white);
	font-size: 2rem;
}

.footer-items h3{
	margin-top: 2rem;
	font-size: 3rem;
}
.footer-items h1{
	font-size: 1rem;
	margin-top: 0.5;
}

.footer-items ul{
	list-style: none;
	
}

.footer-items ul li{
	margin: 1rem 0;
	font-size: 1rem;
	color: var(--white);
	text-decoration: none;
}

.footer-items a {
	color: var(--white);
	text-decoration: none;
	font-size: 1rem;
}
/*--- footer section ---*/


