* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F8F8F8;
}

a { 
  color: inherit; 
  text-decoration: none;
}

.nav-container {
  color: #404040;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 0 rgba(93, 96, 99, .1);
  font-size: 14px;
  background-color: #FFFFFF;
  padding: 10px 0;
  display: flex;
}

.nav {
  width: 1500px;
  margin: 0 50px;
  display: flex;
  justify-content: space-between;
}

.links {
  display: flex;
  justify-content: flex-end;
}

.blog {
  margin-left: 25px;
}

.body-container {
  color: #505050;
  display: flex;
  justify-content: center;
  align-items: center; 
  margin: 10px;
}

.body {
  display: flex;
  width: 1000px;
  height: 700px;
  justify-content: space-around;
  align-items: center; 
  flex-wrap: wrap;
}

.description {
  margin: 25px;
	flex: 2;
}

.profile {
	display: flex;
	justify-content: space-between;
  align-items: center; 
  flex-direction: column;
  margin: 25px;
}

.profile-picture {
	height: 300px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.socials {
  display: flex;
	justify-content: space-between;
}

.social-link {
  width: 30px;
  margin: 10px;
  display: flex;
}

.social-link img {
  width: 30px;
  height: 30px;
}
