.main-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column nowrap;
    line-height: 1.5;
    position: relative;
    margin-top: -20px;
    transform: scale(0.6);
  }
  @media(max-width:600px){
    .main-content{
      transform: scale(0.45);
    }
  }
  .main-content .main-title {
    color: #fff;
    font-size: 1.5em;
    letter-spacing: 8px;
    margin: 20px 20px 109px;
    text-align: center;
    text-transform: uppercase;
  }
  .main-content .container-countdown {
    display: flex;
    flex-flow: row nowrap;
  }
  .main-content .countdown-block {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    margin-right: 30px;
  }
  .main-content .countdown-block:last-child {
    margin-right: 0;
  }
  .main-content .countdown-block .subtitle {
    color: #8486a9;
    font-weight: 600;
  }
  .main-content .time-element {
    background-color: #5D9B5A;
    border-radius: 8px;
    box-shadow: 0px 8px 0px 0px #f5725e;
    color: #FFF;
    font-size: 5.5em;
    height: 140px;
    line-height: 138px;
    margin-bottom: 27px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 150px;
  }
  .main-content .time-element::before,
  .main-content .time-element::after {
    /* background: #24242e; */
    border-radius: 50%;
    content: "";
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    width: 10px;
    z-index: 6;
  }
  .main-content .time-element::before {
    left: -5px;
  }
  .main-content .time-element::after {
    right: -5px;
  }
  .main-content .time-element > span {
    left: 0;
    position: absolute;
    right: 0;
  }
  .main-content .time-element .top {
    background-color: #3A8436;
    transform-origin: 50% 100%;
    transform: perspective(200px);
    z-index: 3;
  }
  .main-content .time-element .top::after,
  .main-content .time-element .bottom-back::after {
    border-bottom: 1px solid #24242e;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .main-content .time-element .bottom {
    z-index: 1;
  }
  .main-content .time-element .bottom::before {
    background-color: #5D9B5A;
    content: "";
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .main-content .time-element .bottom-back {
    background-color: #5D9B5A;
    height: 50%;
    overflow: hidden;
    top: 0;
    z-index: 2;
  }
  .main-content .time-element .bottom-back span {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
  }
  .main-content .time-element .top,
  .main-content .time-element .top-back {
    backface-visibility: hidden;
    height: 50%;
    overflow: hidden;
  }
  .main-content .time-element .top-back {
    background-color: #5D9B5A;
    bottom: 0;
    transform-origin: 50% 0;
    transform: perspective(200px) rotateX(180deg);
    z-index: 4;
  }
  .main-content .time-element .top-back span {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -100%;
  }
  .main-content .attribution {
    display: flex;
    flex-direction: column;
    margin-top: 250px;
    text-align: center;
  }
  .main-content .attribution .attribution-text {
    color: #8486a9;
  }
  .main-content .attribution .social-medias {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
  }
  .main-content .attribution .social-medias .social-links {
    margin: 10px;
    font-size: 50px;
  }
  .main-content .attribution .social-links,
  .main-content .attribution a {
    color: #fff;
  }
  .main-content .attribution .social-links:hover,
  .main-content .attribution a:hover {
    color: #FFF;
  }
  .main-content .attribution .social-links:focus,
  .main-content .attribution a:focus {
    color: #FFF;
    outline: #fff dotted 3px;
    outline-offset: 0.5em;
  }