Changed around line 1
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
+ color: #333;
+ line-height: 1.6;
+ }
+
+ header {
+ text-align: center;
+ padding: 2rem 1rem;
+ background: #4a90e2;
+ color: white;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem 1rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .progress-section {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .progress-container {
+ width: 100%;
+ height: 20px;
+ background: #e0e0e0;
+ border-radius: 10px;
+ overflow: hidden;
+ margin: 1rem 0;
+ }
+
+ .progress-bar {
+ height: 100%;
+ background: #4a90e2;
+ border-radius: 10px;
+ transition: width 0.5s ease;
+ }
+
+ .progress-text {
+ font-size: 1.2rem;
+ font-weight: bold;
+ }
+
+ .progress-text span {
+ color: #4a90e2;
+ }
+
+ .description {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .description h2 {
+ margin-top: 0;
+ font-size: 1.8rem;
+ color: #4a90e2;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: #4a90e2;
+ color: white;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 600px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ .progress-text {
+ font-size: 1rem;
+ }
+
+ .description h2 {
+ font-size: 1.5rem;
+ }
+ }