@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000000;
  color: #ffffff;
}

/* Layout wrapper */

.wrapper {
  min-height: 100dvh; /* современная мобильная единица */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Center block */

.screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state {
  font-size: 18px;
  letter-spacing: 3px;
  opacity: 0.7;
}

/* Progress */

.progress-track {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #ffffff;
}
