/* Default Light Theme */
body {
	font-family: Arial, sans-serif;
	background-color: #f5f5f5;
	color: #333;
	margin: 0;
}

header {
	display: flex;
	flex-direction: row;
	text-align: center;
	margin: auto;
	background-color: #c0c0c0;
	padding: 30px;
	border-bottom: 2px solid #9f9f9f;
}
header container {
	margin: auto;
	display: flex;
	flex-direction: row;
}
header div1{
	margin: 10px;
}

header div1 h1{
	font-size: 60px;
	margin: 0;
}

header div1 p{
	color: #626262;
	font-style: italic;
	font-size: 30px;
	margin: 0;
	text-align: left;
}

hr{
	background-color: #565656;
	height: 2px;
	border: none;
}

#profile-img {
	resize: none;
	object-fit: cover;
	width: 150px;
	height: 150px;
	/* border-radius: 50%; */
	margin: auto;
	aspect-ratio: 1/1;
}

button {
	padding: 10px 20px;
	margin-top: 10px;
	cursor: pointer;
}

.body-container {
	max-width: 1000px;
	align-self: center;
	margin: auto;
	display: flex;
	flex-direction: row;
	
}

.main-content{
	flex-basis: 70%;
	padding-left: 20px;
	padding-right: 20px;
}

.content-header {
	display: flex;
	flex-direction: row;
	font-size: 20px;
	text-align: center;
	align-items: center;
}

.content-header::before{
	margin-right: 10px;
	content: "";
  	flex: 1;
  	height: 1px;
  	background: #ccc;
}
.content-header::after{
	margin-left: 10px;
	content: "";
  	flex: 1;
  	height: 1px;
  	background: #ccc;
}

.text-content{
	font-size: 15px;
}

.secondary-content{
	border-left: 1px solid  #9f9f9f;
	flex-basis: 30%;
	padding-left: 20px;
}

.secondary-container{
	border-bottom: 1px solid #ccc;
	min-height: 100px;
}

.secondary-content-header{
	font-size: 18px;
}


/* Dark Theme */
body.dark {
	background-color: #121212;
	color: #f5f5f5;
}

@media screen and (max-width:650px) {
	header div1 h1{
		font-size: 20px;
		margin: 0;
	}
	header div1 p{
		color: #626262;
		font-style: italic;
		font-size: 15px;
		margin: 0;
		text-align: left;
	}
	
}