Оцените правильность кода 18/18

Оцените, пожалуйста, есть ли в коде то, что можно было реализовать лучшим способом

html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 550px;
  height: 300px;
  font-size: 12px;
  font-family: "Tahoma", "Arial", sans-serif;
}

.profile {
  padding: 5px 10px;
}

#info-title, .profile .button {
  background: #4dfe15;
}

.profile .albums img {
  display: block;
  padding: 10px;
  border: 2px solid #34495e;
  border-radius: 8px;
}

.profile .photo {
  float: left;
  width: 152px;
}

.profile .info {
  float: left;
  width: 368px;
  margin-left: 10px;
}

.info #info-title,h2 {
  margin: 0;
  padding: 10px;

  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
  background: #34495e;
  border-radius: 4px;
}

.info div.fact {
  padding: 10px;
  background: white;
}

.info div.fact:nth-child(odd) {
  background: #ecf0f1;
}

.info div.fact::after {
  content: "";
  display: table;
  clear: both;
}

div.info div.fact div.title {
  float: left;
  width: 120px;
  text-align: right;
  color: #7f8c8d;
}

.fact .value {
  margin-left: 140px;
  color: #34495e;
}

div.profile div.info div.albums {
  margin-top: 5px;
}

div.profile div.info div.albums img {
  float: left;
  margin-right: 5px;
}

div.profile div.info div.albums #miska img:last-child {
  margin-right: 0;
}

.profile .button {
  display: block;
  height: 30px;
  margin: 5px 0;

  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
}

.profile .stroke {
  background: #3498db;
}

.profile .feed {
  background: #2ecc71;
}

.profile .startle {
  background: #e74c3c;
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 550px;
  height: 300px;
  font-size: 12px;
  font-family: "Tahoma", "Arial", sans-serif;
}

.profile {
  padding: 5px 10px;
}

.profile img {
  display: block;
  padding: 10px;
  border: 2px solid #34495e;
  border-radius: 8px;
}

.profile .photo {
  float: left;
  width: 152px;
}

.profile .info {
  float: left;
  width: 368px;
  margin-left: 10px;
}

.profile .info #info-title,h2 {
  margin: 0 !important;
  padding: 10px !important;

  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
  background: #34495e;
  border-radius: 4px;
}

.profile .info .fact {
  padding: 10px;
  background: white;
}

.profile .info .fact:nth-child(odd) {
  background: #ecf0f1;
}

.profile .info .fact::after {
  content: "";
  display: table;
  clear: both;
}

.profile .info .fact .title {
  float: left;
  width: 120px;
  text-align: right;
  color: #7f8c8d;
}

.profile .info .fact .value {
  margin-left: 140px;
  color: #34495e;
}




.profile .info .albums {
  margin-top: 5px;
}

.albums > #miska {
  float: left;
  margin-right: 5px;
}

.profile .info .albums img:last-child {
  margin-right: 0;
}

.profile .button {
  display: block;
  height: 30px;
  margin: 5px 0;

  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
}

.profile .stroke {
  background: #3498db;
}

.profile .feed {
  background: #2ecc71;
}

.profile .startle {
  background: #e74c3c;
}

Использование
.profile .button
.profile .albums
.profile .photo
итд не обязательно, классы button albums и photo оригинальны внутри контейнера profile, другого контейнера с такими же классами нет, а значит и упоминать его постоянно не нужно. Так же и с div.profile div.albums итд - нет смысла уточнять тэг для класса, другое дело, если бы существовал контейнер с другим тэгом и таким же классом, например:
div class=“profile”
section class=“profile”
Вот тогда да, задав стиль для класса profile, изменится как div так и section - будет проблема - в таких случаях используется двойной уточняющий селектор
TAG.CLASS { }
Проанализируй свой код и избавься от всего лишнего, тогда будет выглядеть лаконично, профессионально и оптимизировано.