/* styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 30px;
}

.progress-bar {
  width: 70%;
  margin: 0 auto;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px;
}

.progress {
  width: 50%; /* You can adjust this width to indicate progress */
  background-color: #32b4d8; /* You can adjust this color */
  height: 20px;
  border-radius: 5px;
}
