* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul li {
  list-style: none;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-family: Arial, sans-serif;
  font-weight: normal;
  font-size: 7px;
  height: 100%;
}
@media screen and (max-width: 620px) {
  html {
    font-size: 6px;
  }
}
@media screen and (max-width: 410px) {
  html {
    font-size: 5px;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  html {
    font-size: 4.8px;
  }
}
@media screen and (max-height: 400px) and (orientation: landscape) {
  html {
    font-size: 3.5px;
  }
}

html,
body {
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.content {
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 623px;
  width: 100%;
}

.header {
  color: #AAAAAA;
  font-size: 2.6rem;
  width: 100%;
}
.header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 8rem;
}

.header__icon img {
  width: 3rem;
  height: 3rem;
  display: block;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(196, 196, 196, 0.15)), to(rgba(196, 196, 196, 0)));
  background: linear-gradient(180deg, rgba(196, 196, 196, 0.15) 0%, rgba(196, 196, 196, 0) 100%);
  width: 100%;
}

.player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10rem;
  color: #B8B8B8;
  font-size: 2.2rem;
}

.player__size {
  margin-left: 2rem;
}
.player__size img {
  display: block;
  width: 2.3rem;
  height: auto;
}

.player__progress {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 2rem 0 3rem;
  height: 0.4rem;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
.player__progress:after {
  content: "";
  position: absolute;
  background: url(../images/dott.svg) 0 0 no-repeat;
  width: 3.5rem;
  height: 3.5rem;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5rem 0 3rem;
  color: #FFFFFF;
}
.main .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: -3rem;
}
.main__play img {
  width: 15rem;
  height: 15rem;
  display: block;
}

.main__title {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.4;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: auto auto 0;
  background: #0FA34A;
  border-radius: 2rem;
  width: calc(100% - 6rem);
  height: 18rem;
  color: #fff;
  text-decoration: none;
  font-size: 4.5rem;
  font-weight: 800;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}
.button span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
}