html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  background-color: lightgray;
}

header {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 46px;
  z-index: 100;
}

header .header-container {
  display: flex;
  justify-content: space-around;
  max-width: 1190px;
  margin: 0 auto;
}

header .navbar {
  flex: 1;
}

header .nav_links {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

header .nav_link {
  margin: 10px;
  display: inline-block;
}

header .nav_link a {
  text-decoration: none;
  color: #69757e;
}

header .nav_link a:hover {
  color: #4AB3F4;
}

header .logo {
  width: 20px;
  height: 20px;
  margin: 10px;
  justify-content: center;
  align-items: center;
}

header .logo a:hover {
  color: blue;
}

header .header-right {
  flex: 1;
  display: flex;
  justify-content: end;
}

header .header-right a {
  margin: 10px;
  padding: 5px 10px;
  min-width: 0px;
  width: 60px;
  display: block;
  border-radius: 2em;
  background-color: #4AB3F4;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: small;
}

header .header-right a:hover {
  background-color: blue;
}

section {
  max-width: 1190px;
  margin: 56px auto;
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}

section .profile_section {
  width: 290px;
  height: 240px;
  background-color: white;
}

section .profile_benner {
  padding: 20px;
  background-color: black;
}

section .benner {
  width: 100%;
}

section .profile_avatar {
  width: 80px;
  height: 80px;
  border: 4px solid white;
  border-radius: 50%;
  position: relative;
  bottom: 35px;
  left: 10px;
}

section .profile_account .email {
  color: black;
  font-size: small;
}

section .profile_statistics .profile_statistic .atribut {
  font-size: small;
}

section .score {
  color: #4AB3F4;
  font-weight: bold;
  position: relative;
  bottom: 5px;
}

section .profile_account {
  position: relative;
  left: 120px;
  bottom: 90px;
}

section .name {
  margin: 0;
  padding: 0;
  text-decoration: underline
}

section .email {
  margin: 0;
  padding: 0;
}

section .profile_statistics {
  display: flex;
  justify-content: space-around;
  position: relative;
  bottom: 50px;
}

section .atributs {
  margin: 0;
  padding: 0;
  text-align: center;
}

section .messages_section {
  flex: 1;
  width: 400px;
  background-color: white;
}

section .message {
  display: flex;
}

section .message_content {
  margin: 15px;
  flex: 1;
}

section .message_avater {
  margin: 15px;
  margin-right: 0px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-bottom: 1px solid #e6ecf0;
  position: relative;
  bottom: 3px;
}

section .message_account {
  display: flex;
}

section .message_account p {
  margin: 0;
}

section .follow {
  margin: 20px;
}

section .follow_section {
  background-color: white;
  width: 290px;
  padding: 10px 20px;
}

section .follow_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

section .follow {
  margin: 3px;
  padding: 10px;
  justify-content: space-between;
}

section a {
  padding: 5px 15px;
  border: 2px solid #4AB3F4;
  border-radius: 1em;
  color: #4AB3F4;
  text-decoration: none;
}

/*Cand latimea paginii este mai mica de 1000 de pixeli,
se aplica stilurile urmatoare*/
@media only screen and (max-width:1000px) {
  section .follow_section {
   display: none;
  }
}