* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Helvetica Neue', sans-serif;
	background-color: #f3efef;
}
nav {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #8a4184;
  }
  
  .nav-button {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
  }
  
  .nav-button:hover {
    background-color: white;
    color: #e798d0;}
header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background-color: #d6eaf8;
}
.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
	float: left;
  }
header h1 {
	font-size: 35px;
	font-weight: bold;
	color: #a67e7e;
	margin-bottom: 20px;
	font-family: 'Bitter', serif;
}

main {
	padding: 70px;
}

section {
	margin-bottom: 50px;
}

section h2 {
	font-size: 40px;
	font-weight: bold;
	color: #a67e7e;
	margin-bottom: 20px;
	font-family: 'Bitter', serif;
}
.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
.section-title {
	font-size: 18px;
	line-height: 1.5;
	color: #585858;
	margin-bottom: 20px;
	margin-left: 30px;
	text-align: center;
}
.info {
	font-size: 18px;
	line-height: 1.5;
	color: #585858;
	margin-bottom: 20px;
	margin-left: 30px;
	text-align: center;
}

footer {
	background-color: #d6eaf8;
	padding: 20px;
	text-align: center;
	font-size: 14px;
	color: #585858;
}