div#info > p {
font-weight: bold;
}

button#downloadbtn {
 box-sizing: border-box;
  padding: 0.75rem 1.5rem;
  background: #8b0000;
  color: white;
  border: 2px solid #8b0000;
  font-size: 1.1rem;
  border-radius: 2rem;
  font-weight: bold;
}

button#downloadbtn:hover {
  background: white;
  color: #8b0000;
  cursor: pointer;
}


.progress-container {
  width: 98%;
}

.progress-text {
  margin-top: 5px;
  color: #333;
  text-align: center;
}
progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #f3f3f3;
}

progress::-webkit-progress-bar {
  background: #f3f3f3;
  border-radius: 10px;
}

progress::-webkit-progress-value {
  background: #16d73b;
  border-radius: 10px;
}

progress::-moz-progress-bar {
  background: #16d73b;
  border-radius: 10px;
}

progress::-ms-fill {
  background: #16d73b;
  border-radius: 10px;
}
