Для элемента с классом data_text не применяется свойство margin-bottom
<!DOCTYPE html>
<html>
<head>
<title>Business Theme</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
}
header {
height: 88px;
border-bottom: 1px solid #828282;
width: 100%;
margin: 0 auto;
}
nav {
text-align: center;
}
.link {
display: inline-block;
margin-top: 33px;
margin-right: 125px;
font-weight: 600;
color: #828282;
text-decoration: none;
}
.link:hover {
color: #000;
}
.wrapper {
width: 943px;
margin-top: 40px;
}
.man_nick {
margin-left: 200px;
font-size: 47px;
font-weight: bold;
}
.data_text {
margin-left: 682px;
}
.this_text {
display: inline-block;
height: 143px;
}
.data_text {
margin-bottom: 50px;
}
</style>
</head>
<body>
<header>
<nav>
<a href="", class="link">Home</a>
<a href="", class="link">About Me</a>
<a href="", class="link">Skills</a>
<a href="", class="link">Portfolio</a>
<a href="", class="link">Contacts</a>
</nav>
</header>
<section class="wrapper">
<div class="this_text">
<p class="man_nick">Denis <br />
Novik</p>
<p class="data_text">UX|UI Designer <br />
24 years old, Minsk</p>
</div>
</section>
</body>
</html>