@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Poppins', sans-serif;
}

.hero-section{
	background: blue;
	color: white;
	position: relative;
}

.hero-section .desc{
    padding-top: 7%;
}
.hero-section .desc h2{
	padding-bottom: 10px;
	font-weight: 600;
}
.hero-section .desc p{
	max-width: 700px;
}
.hero-section img{
	width:100%;
}
.download-cv{
	position: absolute;
	top: 98%;
}

.download-cv button{
	padding: 5px 15px;
	border: none;
	outline: none;
	background: green;
	color: white;
	border-radius: 4px;
	font-weight: 500;
}