* {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.4em;
  text-decoration: none;
  text-align: center;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #141a26;
}

.container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
}

.content {
  margin: 0 auto;
  width: 60vw;
  display: flex;
}

.content__text {
  flex-direction: row;
}

.content__progress {
  width: 100%;
  border: 3px solid #ccc;
  border-radius: 5px;
  background-color: #f0f0f2;
  margin: 0 5px;
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: 3px;
  background-color: #97a4a6;
  transition: width 1s;
}

.btn {
  width: 100px;
  margin: 10px auto;
  border: 3px solid #ccc;
  padding: 5px 10px;
  border-radius: 3px;
}

.btn-primary {
  color: #fff;
  background-color: #059fff;
}

.btn-primary:active,
.btn-primary:hover {
  background-color: #0477bf;
}
