:root{
	--accent-blue:#00ABD1;
	/*replaces #007991;*/
	--hot-pink:#D42464;
	--deep-purple:#1D2671;
	--text-color:#FFF;
	--main-bg:#090A0C;
	scroll-behavior: smooth;
}

body{
	padding: 0;
	margin: 0;
	font-size: 17px;
}

::selection{
	background-color: var(--hot-pink);
	color:#fff;
}

.content{
	background-color: var(--main-bg);
	margin:0;
	padding:50px;
	display:flex;
	flex-wrap: wrap;
	row-gap: 6em;
	justify-content: space-between;
}

.header{
	width:100%;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap:wrap;
	column-gap: 1em;
	row-gap:1em
}

body:before,body:after{
	content:'';
	width:100%;
	display: block;
	height:20px;
	background: linear-gradient(-45deg, var(--hot-pink), var(--deep-purple));
	background-size: 200% 200%;
	animation: gradient 15s ease infinite;
}

.menu{
	display:flex;
	flex-direction: row;
	font-size: 1.2em;
	text-transform: uppercase;
	column-gap:1em;
}

.left-section{
	width:25%;
	display: flex;
	flex-direction: column;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media screen and (max-width: 900px) {
	.content{
		padding:20px;
		row-gap: 3em;
	}
  	.left-section{
  		width:100%;
  	}
  	.right-section{
  		width:100%;
  	}
  	h1{
  		font-size: 3em!important;
  	}
  	h2{
  		font-size: 2em!important;
  	}
}

.right-section{
	width:75%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	row-gap: 2em;
}

.cv-inner{
	margin:0;
}

h1{
	font-family: "IBM Plex Mono", monospace;
 	font-weight: 700;
	font-style: normal;
	font-size:4em;
	color:var(--accent-blue);
	margin: 0;
	line-height: 0.8;
	text-transform: uppercase;
}

h2{  
	font-family: "IBM Plex Mono", monospace;
	font-weight: 600;
	font-style: normal;
	font-size:2.5em;
	color:var(--accent-blue);
	margin: 0 0 0.5rem 0;
	text-transform: uppercase;
	line-height: 1em;
}

h3{  
	font-family: "IBM Plex Mono", monospace;
	font-weight: 600;
	font-style: normal;
	font-size:1em;
	color:var(--accent-blue);
	margin: 0 0 0.5rem 0;
	text-transform: capitalize;
}

p, ul{
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 1em;
  	color:var(--text-color);
  	margin: 0 0 1em 0;
}

a{
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 1em;
  	color:var(--text-color);
  	margin: 0;
  	text-decoration: none;
	transition: all 300ms ease-in-out;
}

a:hover{
	color:var(--hot-pink);
  	text-decoration: underline;
}

p:last-child{
  	margin: 0;
}


/*make it printer friendly*/

@media screen{
	.print-only{
		display: none!important;
	}
}

@media print{

	.screen-only{
		display: none!important;
	}

	.content{
		background-color: #fff;
		padding: 20px 0 20px 0;
		row-gap:26px;
	}

	.menu{
		display: none;
	}

	p, ul{
		color:#000;
		font-size: 14px;
		margin: 0 0 0.2em 0;
	}

	h1{
		font-size:26px;
	}

	h2{
		font-size:18px
	}

	h3{
		font-size:13px;
	}

	.right-section{
		row-gap: 14px;
		width:70%!important;
	}
}