* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: white;
  overflow: hidden;
}

.demoWrap,
.boxWrap,
.box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.demoWrap {
  height: 100vh;
  background-color: #1B1B1B;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 20px;

}

.box {
  height: 80px;
  width: 80px;
  align-items: center;
  margin: 10px;
  font-size: 1.5em;
  font-weight: 700;
  color: white;
  border-radius: 4px;
}

.demoInfo {
  max-width: 800px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: solid 1px rgba(255, 255, 255, 0.35);
}

.box1 {
  background-color: #84c186;
}

.box2 {
  background-color: #8b6c4c;
}

.box3 {
  background-color: #39a3ee;
}

.box4 {
  background-color: #ef9144;
}

.box5 {
  background-color: #cd58eb;
}

.box6 {
  background-color: #b84b4b;
}

#action {
  padding: 20px;
  font-size: 1.1em;
  margin-top: 30px;
  cursor: pointer;
  font-weight: 700;
    position: relative;
  z-index: 10;
}

.credits {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 141px;
  width: 100%;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/314556/codepenAvatar.png") 10px bottom no-repeat;
}

.credits p {
  position: absolute;
  bottom: 0;
  left: 120px;
  line-height: 1.5;
  margin: 0;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.4);
}