
*{
	margin: 0;
	padding: 0;
	/*box-sizing: content-box;*/
	box-sizing: border-box; 
}


html {
	font-family: Poppins, 'Segoe UI', Tahoma; 
	color: var(--text-color); 
}

body {
	width: 100%;
	/*height: 100%;*/
}

section {
	margin: 4em auto;
	width: min(75em, 100%);
	/*height: 100vh;*/ 
	display: flex; 
	justify-content: center;
	align-items: center;
}

.flex-container1 {
	display: flex; 
	/*justify-content: center;*/ /*centers the Biography Cover Page horizontally*/
	/*align-items: center;*/ /*DOESN'T DO ANYTHING*/
}

.flex-container {
	width: 850px;
	/*height: 700px;*/
	display: flex; 
	flex-direction: column; 
}

.flex-container img {
	width: 300px;
	margin-top: 30px;
	border-radius: 5px;
}

.text-container {
	margin-top: 30px;
	text-align: left;
}

.text-container p {
	margin-top: 8px;
	margin-bottom: 8px;	
}

footer{
	margin-top: 20px;
	margin-bottom: 10px;
}


/*************RESPONSIVE*************/

@media(max-width: 640px){

img {
	width: 70%;
	/*margin-top: 130px;*/
}


.flex-container1 {
	width: 100%;
	height: 100%;
	/*margin-top: 10px;*/
	/*text-align: center;*/
	/*justify-content: center;*/
	align-items: center;
}

.flex-container {
	width: 100%;
	margin-top: 10px;
	text-align: center;
}

.text-container p {
	margin-left: 5px;
	margin-right: 5px;	
}	
	
footer{
	margin-top: 20px;
	margin-bottom: 10px;
}

}