body{
  font-size: 1.2em;
}
div{
  margin-bottom: 1em;
}
div *{
  margin-right: 8px;
}
b{
  color: dodgerblue;
}
i{
  color: orangered;
}
/* 부모 요소 내 첫 번째 ~요소 */
b:first-of-type{
  text-decoration: overline;
}
/* 부모 요소 내 마지막 ~요소 */
b:last-of-type{
  text-decoration: line-through;
}