/* [1] */
/* [2] */
/* [3] */
/* [4] */
/* [5] */
/* [6] */
/* Styles: */
.icon {
    position: relative;
    background: white;
    cursor: pointer;
    margin: auto;
    color: rgb(15, 35, 95);
    border-radius: 50%;
    height: 150px;
    width: 150px;
    line-height: 150px;
    text-align: center;
    font-size: 1.5vw;
    font-weight: bold;
    transition: 0.24s 0.2s;
  }
  
  .icon:hover {
    background: rgba(255, 255, 255, 0.75);
  }
  
  .menu {
    position: absolute;
    top: -75px;
    left: -75px;
    border: 150px solid transparent;
    cursor: default;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 1.4s 0.07s;
    z-index: -5;
  }
  
  .spread {
    position: absolute;
    top: -100px;
    left: -80px;
    transform-origin: 105px 105px;
    transition: all 0.5s 0.1s;
  }
  
  .icon:hover {
    /* Where all the MAGIC happens: */
  }
  .icon:hover .menu {
    transition: transform 0.4s 0.08s, z-index   0s  0.5s;
    transform: scale(1);
    z-index: 5;
  }
  .icon:hover .spread, .icon:hover .unit {
    transition: all 0.6s;
  }
  .icon:hover .spread:nth-child(1) {
    transition-delay: 0.02s;
    transform: rotate(85deg);
  }
  .icon:hover .spread:nth-child(1) .unit {
    transition-delay: 0.04s;
    transform: rotate(635deg);
  }
  .icon:hover .spread:nth-child(2) {
    transition-delay: 0.04s;
    transform: rotate(125deg);
  }
  .icon:hover .spread:nth-child(2) .unit {
    transition-delay: 0.08s;
    transform: rotate(595deg);
  }
  .icon:hover .spread:nth-child(3) {
    transition-delay: 0.06s;
    transform: rotate(165deg);
  }
  .icon:hover .spread:nth-child(3) .unit {
    transition-delay: 0.12s;
    transform: rotate(555deg);
  }
  .icon:hover .spread:nth-child(4) {
    transition-delay: 0.08s;
    transform: rotate(205deg);
  }
  .icon:hover .spread:nth-child(4) .unit {
    transition-delay: 0.16s;
    transform: rotate(515deg);
  }
  .icon:hover .spread:nth-child(5) {
    transition-delay: 0.1s;
    transform: rotate(245deg);
  }
  .icon:hover .spread:nth-child(5) .unit {
    transition-delay: 0.2s;
    transform: rotate(475deg);
  }
  .icon:hover .spread:nth-child(6) {
    transition-delay: 0.12s;
    transform: rotate(285deg);
  }
  .icon:hover .spread:nth-child(6) .unit {
    transition-delay: 0.24s;
    transform: rotate(435deg);
  }
  .icon:hover .spread:nth-child(7) {
    transition-delay: 0.14s;
    transform: rotate(325deg);
  }
  .icon:hover .spread:nth-child(7) .unit {
    transition-delay: 0.28s;
    transform: rotate(395deg);
  }
  .icon:hover .spread:nth-child(8) {
    transition-delay: 0.16s;
    transform: rotate(365deg);
  }
  .icon:hover .spread:nth-child(8) .unit {
    transition-delay: 0.32s;
    transform: rotate(355deg);
  }
  .icon:hover .spread:nth-child(9) {
    transition-delay: 0.18s;
    transform: rotate(405deg);
  }
  .icon:hover .spread:nth-child(9) .unit {
    transition-delay: 0.36s;
    transform: rotate(315deg);
  }
  
  /* END .icon:hover */
  .unit {
    position: absolute;
    background: white;
    font-size: 60%;
    text-decoration: none;
    width: 120px;
    height: 120px;
    line-height: 120px;
    color: rgb(15, 35, 95);
    border-radius: 50%;
    transition: 0.6s;
    margin: -90px;
    
  }
  
  /* Just CodePen layout stuff: */
  body, a, ul, li {
    margin: 0;
    outline: 0;
    padding: 0;
    list-style: none;
  }
  
  html, body {
    height: 100%;
    min-height: 300px;
    margin:auto;
    width: 100%;
  }
  
  body {
    font-family: sans-serif;
    background: radial-gradient(#00bbff, #206080);
    transform: translate3d(0, 0, 0);
  }
  
  .icon {
    top: 50%;
    margin-top: -75px;
  }

  #container {

    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;

  }
  footer{

    color:whitesmoke;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 5px 0;

    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
