.MainDiv{
    margin-top: 0px;
}

.Intro{
    padding: 30px 20px;
}

.LightContent{
  padding: 20px 20px 20px 20px;
}

/* progress bar */

.progress{
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    /* margin: 30px 50px; */
    width: calc(100%);
    height: 35px;
    background-color: #757575;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25) inset;
}

.progress .value{
    background-color: #c9b541;
    display: inline-block;
    position: static;
    height: 100%;
    box-shadow: 0 0 5px rgba(201.5, 181, 66.3, 0.60);
}

.label{
    position: absolute;
    left: 5px;
    right: 5px;
    top: 10px;
    bottom: 5px;
}

.label p{
    content: attr(data-label);
    font-size: 13px;
    font-family: Impact;
    letter-spacing: 1px;
    color: #191a1c;
    display: inline;
    vertical-align: 50%;
  }

  .label p:last-of-type{
      position: absolute;
      right: 0px;
      top: -19px;

  }


  .label p::selection{
    background-color: #191a1c;
    color: #c9b541;
  }
  
  .label p::-moz-selection{
    background-color: #191a1c;
    color: #c9b541;
  }


  /* Card */
  .Card{
      display: inline-block;
      background-color: #757575;
      margin: calc((100% - (2 * (170px))) / 4 - 2px);
      margin-top: 15px;
      margin-bottom: 15px;
      width: 170px;
      text-align: center;
      cursor: pointer;
  }

  .Card>a>div:nth-child(2), .Card>div:nth-child(2){
      background-color: #c9b541;
      padding: 5px;
      box-shadow: 0 0 5px rgba(201.5, 181, 66.3, 0.60);
  }

  .Card>a>div>div{
      display: inline-block;
      padding: 5px;
  }

  .Card img{
      height: 30px;
      max-width: 70px;
      text-align: left;
  }

  .Card p{
    color: #191a1c;
    font-weight: bold;
    margin: 0px;
  }

  .Card a{
    text-decoration: none;
  }

  /*Feature*/
  .Feature{
      
    width: 100px;
    margin: calc((100% - (3 * (100px))) / 6 - 2px);

    cursor: default;
  }

  .Feature p{
      padding: 3px;
      font-size: 12px;
  }

  .Feature>div:first-child{
    height: 46px;
    text-align: center;
}


  .Feature>div:nth-child(2){
    padding: 0px;
  }

  .InProgress>div:nth-child(2){
    background-color: #bfb458;
    box-shadow: none;
  }

  .Todo>div:nth-child(2){
    background-color: #b4b372;
    box-shadow: none;
  }

  .Current>div:nth-child(2){
    background-color: #94afbd;
    box-shadow: 0 0 5px rgba(148, 175, 189, 0.60);
  }

  .Goal>div:nth-child(2){
    background-color: #9cb0a9;
    box-shadow: none;
  }

  .Tba>div:nth-child(2){
    background-color: #a8b18f;
    box-shadow: none;
  }


  /*Hovers*/
  .Card:hover{
    box-shadow: 0 0 10px rgba(201.5, 181, 66.3, 0.60);
  }

  .Feature:hover{
      box-shadow: none;
  }