body {
  height: 100%;
  margin: 0;
  padding: 0 0 60px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ul.colors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.pantone {
  display: flex;
  flex-grow: 1;
  z-index: 0;
}

#swatch {
  display: none;
  margin: 0 auto;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 2;
  width: 370px;
  height: 415px;
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.2);
  background: white;
}

#swatch.active {
  display: block;
}

.swatch-color {
  width: 100%;
  height: 280px;
}

.swatch-text {
  padding: 20px;
}

.swatch-text h1 {
  margin: 0 0 -87px 0;
  font-size: 5.5em;
  letter-spacing: -0.055em;
  transform: scale(0.45, 0.41) translate(-200px, -80px);
}

.swatch-text h1 sup{
  padding: 0.2em;
  font-size: 0.72em;
}

.swatch-text p {
  margin-left: 2px;
  margin-bottom: -22px;
  text-transform: capitalize;
  font-size: 1.45em;
  letter-spacing: -0.02em;
  font-weight: bold;
}

#controls {
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #DDD;
  text-align: center;
}

.control {
  display: none;
}

.control-label {
  display: inline-block;
  margin: 5px;
  padding: 8px;
  border-radius: 5px;
  font-size: 0.8em;
  color: #444;
  letter-spacing: 0.02em;
  text-align: center;
  background-color: #FFF;
}

.control:checked + .control-label {
  color: #FFF;
  background-color: rgb(0, 176, 139);
}