body {
  background-color: #270C51;
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  padding: 0;
  margin: 0;
}
.wrap {
  display: flex;
  height: 100vh;
  width: 100vw;
  flex-flow: row-reverse;
}
.planet-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(assets/space.png) no-repeat;
  background-size: cover;
  background-position: top center;
}
.planet-controls {
  background: #160635;
  width: 420px;
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}
.planet-controls > div {
  padding: 10px;
  box-sizing: border-box;
}
.btn {
  background: #fff;
  padding: 4px 12px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  color: #000;
}
.btn:hover {
  cursor: pointer;
  background-color: #eee;
}
.color-blobs > div {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
}
.color-blobs > div.blue {
  background-color: #7470DE;
}
.color-blobs > div.blue1 {
  background-color: #CDC9F5;
}
.color-blobs > div.red {
  background-color: #EA3F75;
}
.color-blobs > div.red1 {
  background-color: #FDC1D4;
}
.color-blobs > div.green {
  background-color: #1BBF6D;
}
.color-blobs > div.green1 {
  background-color: #92EBBF;
}
.color-blobs > div.yellow {
  background-color: #F4C037;
}
.color-blobs > div.yellow1 {
  background-color: #F8D67C;
}
.code-block {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 60px 24px;
  width: 320px;
  flex-shrink: 0;
  background: #160635;
}
.code-block code {
  display: block;
  padding-left: 20px;
  margin: 3px 0;
  font-size: 16px;
}
.code-block :first-child,
.code-block :last-child {
  padding-left: 0;
}
