/* add the Inter font family as the default font for the page */
body {
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	margin: 0;
	padding: 0;
	color: #4c566a
}
header {
	max-width: 2000px;
	margin: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 20px;

}

a {
  display: inline;
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.container {
	max-width: 2000px;
	display: flex;
	margin: auto auto;
	flex-wrap: wrap-reverse;
	padding: 20px;
	justify-content: center;
}
.bio {
	max-width: 600px;
	font-size: 18px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-self: start;
}
.profile-pic {
	width: 600px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* add rounded corners to the profile picture */
.profile-pic img {
	width: 300px;
	height: 300px;
	border-radius: 50%;
}

.bio h1 {
	font-size: 90px;
	margin:0;
	line-height: 1;
}

/* add a dark mode toggle */
.dark-mode-btn  {
	background-color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	align-self:flex-end;

}
/* add some basic styling for dark mode */
.dark-mode-active {
	background-color: rgb(46, 52, 64);
	color: white;
}

.dark-mode-active a {
  display: inline;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.dark-mode-active .dark-mode-btn {
	background-color: rgb(46, 52, 64);
}

.dark-mode-active .moon-sun {
	background-color: rgb(46, 52, 64);
}

.moon-sun  {
	width: 40px;
}


/* add media queries to adjust the layout on smaller screens */

@media (max-device-width: 799px) {
	.bio,
	.profile-pic {
		width: 100%;
	}
	.profile-pic {
		align-items: center;
	}
	.bio h1 {
		font-size: 80px;
	}
	.moon-sun {
		width: 50px;
	}
	.moon-sun  {
		width: 90px;
	}
}
@media (max-device-width: 599px) {
	.dark-mode {
		padding: 20px 30px;
		font-size: 40px;
	}
	.bio {
		max-width: 900px;
		font-size: 40px;
	}
	.bio h1 {
		font-size: 120px;
	}
	.profile-pic {
		align-items: center;
	}
	.container {
		margin: 0px;
	}
	.profile-pic img {
		width: 500px;
		height: 500px;
		border-radius: 50%;
	}
	.moon-sun  {
		width: 90px;
	}
}
