*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./background.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

h1 {
  text-align: center;
  color: #C75263;
  font-size: 50px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.container {
  display: flex;
  justify-content: center;
}

.counter-container {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 2px solid #8c1c44;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  color: #8c1c44;
  margin: 0 5px;
  text-transform: uppercase;
}

.counter {
  display: block;
  font-size: 35px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .counter-container {
    width: 80px;
    height: 80px;
  }

  .counter-container > .text-count{
    font-size: 14px;
  }

  h1{
    font-size: 25px;
  }

  .counter {
    font-size: 20px;
  }
}
