* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

body {
  background-color: #a42f2e;
  height: 100vh;

  overflow: hidden;

  font-family: 'Montserrat', sans-serif;


  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  body {
    flex-direction: column;
    justify-content: flex-start;
  }

  .lulinha {
    margin-top: 3em;
    width: 300px;
  }

  .header-title, .footer-title {
    font-size: 16pt !important;
  }

  .counter {
    font-size: 20pt !important;
    font-weight: 700;
  
    padding: 0.2em 0;
  }

  .time-description {
    font-size: 20pt !important;
  }

  .container {
    width: 90% !important;
    align-items: center !important;
  }

  .divider {
    display: flex !important;

    width: 50%;
  }

  
  .divider-desktop, .audio-help {
    display: none !important;
  }
}

.divider {
  display: none;
}

.link a{
    color: #fff !important;
}

.container {
  width: 35%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;

  padding: 2em 0;

}

.time-description {
  font-weight: 100 !important;
}

.container .header-title, .footer-title {
  font-size: 32pt;
  font-weight: 900;
}

.container .counter {
  font-size: 32pt;
  font-weight: 700;

  padding: 0.2em 0;
}

.audio-help {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 2em;
}

footer {
  width: 100%;
  position: absolute;
  bottom: 0;

  color: #fff;
  font-size: 12pt;
  font-weight: 100;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2em 0;
}

.divider-desktop {
  height: 100%;
  max-height: 320px;

  margin-right: 3em;
}


@media only screen and (max-width: 768px) {
  .counter {
    word-wrap: break-word;
    text-align: center;
  }
}