body {
    background: #507191;
    background-image: url("assets/noisy-texture.png");
    margin: 0px;
    font-family: Helvetica, Sans-Serif;
  }
  span {
    color: #ecf0f1;
    font-weight: 900;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
    display: block;
    text-decoration: none;
  }
  .title {
    font-size: 60px;
    text-transform: uppercase;
    color: #34495e;
    -webkit-text-fill-color: transparent;
  }
  .title h1 {
    text-align: center;
    -webkit-transition: text-shadow 1s ease;
    transition: text-shadow 1s ease;
    text-shadow: 0 0 1px rgba(0,0,0,.3);
    margin: 0;
    padding: 0;
  }
  .wrapper {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .container-fluid {
    width: 100%;
  }
  .item {
    min-width: 200px;
  }
  .pressed {
    padding-bottom: 30px;
    padding-top: 30px;
    box-shadow: 0px 0px 16px 2px rgba(190, 190, 190, 0.2),
      inset 0px 0px 16px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 16px 2px rgba(190, 190, 190, 0.2),
      inset 0px 0px 16px 2px rgba(0, 0, 0, 0.65);
    -webkit-box-shadow: 0px 0px 16px 2px rgba(190, 190, 190, 0.2),
      inset 0px 0px 16px 2px rgba(0, 0, 0, 0.65);
    background: #34495e;
    background-image: url("assets/noisy-texture.png");
    overflow: auto;
    position: relative;
    white-space: nowrap;
    display: flex;
    justify-content: center;
  }
  .img-box {
    text-align: center;
    display: inline-block;
    float: none;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 20px;
    margin-left: 20px;
    width: 200px;
  }
  .img-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .img-circle:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  }
