

body{
	font-family: 'Montserrat', sans-serif;
	height: 100%;
	background-image: url('images/background-img.jpg');
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Styles for the home page begin*/
.home{
	margin: 10% auto;
	color: white;
	text-align: center;
}

.home h1{
	font-size: 10em;
	font-family: 'Montserrat', sans-serif;
}

.home p{
	display: inline;
	font-size: 1.5em;
	margin: auto 20px;
}
.home p a{
	color: white;
	text-decoration: none;
	background-color: #cb0000;
	padding: 25px;
	border: solid 0px white;
	border-radius: 10%;
}

.home p a:hover{
	background-color: #AA0000;

}
/*home page styles end*/

/*bio page styles begin*/
.bio-container{
	display: flex;
	justify-content: center;
}
.content{
	display: flex;
	width: 80%;
	padding:60px 30px;
	margin:0px auto;
	align-items: center;
	background-color: white;
}
.bio{
	text-align:left!important;
	margin: auto 30px;
	flex:0 0 53%;
}
#bio-image{
	align-items :center;
	display: inline-flex;
	justify-content: center;
	flex:0 0 40%;
}
#bio-image img{
	width: 90%;
	height: auto;
	padding: 10px;
}
#name a{
	text-decoration: none;
	color: black;
	font-weight: bolder;
	font-size: 1.3em;
}
#name a:hover{
	font-size:1.5em;
}
/*bio page styles end*/

/*resume page styles begin*/
.resume{
	width: 80%;
	margin: 0px auto;
	padding: 30px;
}
.resume div{
	margin: 0px;
	padding: 30px 50px;
}
.resume div h1 a{
	text-align: center;
	text-decoration: none;
	color: white;
	font-size: 1.5em;
}
.resume div:nth-child(odd){
	background-color: black;
	color: white;
}
.resume div:nth-child(even){
	background-color: white;
	color: black;
}
.experience a{
	color: #AA0000;
	text-decoration: none;
}
.experience a:hover{
	color: white;
}