- index.html
 - style.css
 
HTML
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Test: The shattered crystal</title>
    <meta charset="utf-8">
    <link rel="stylesheet" href="world.css">
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <div class="content overflow">
      <div class="crystal">
        <div class="part-green"></div>
        <div class="part-maroon"></div>
        <div class="part-orange"></div>
        <div class="part-red"></div>
        <div class="part-yellow"></div>
        <div class="part-blue"></div>
      </div>
    </div>
  </body>
</html>
CSS
body {
  width: 550px;
  height: 310px;
  margin: 0;
  padding: 0;
}
.part-green {
}
.part-maroon {
}
.part-orange {
}
.part-red {
}
.part-yellow {
}
.part-blue {
}
- Goal
 - Result
 - Overlay
 - Differences
 - ?
 
Press Compare to send your code for review.