diff --git a/README.md b/README.md index 6557b9b..02fcd41 100644 --- a/README.md +++ b/README.md @@ -44,9 +44,9 @@ This project is a simple web application designed to collect responses from user ``` npm install ``` -4. Start the server: +4. Start the server and bind it to all network interfaces (0.0.0.0): ``` - node server.js + node server.js --host 0.0.0.0 ``` 5. Open your web browser and go to `http://localhost:3000` to access the application. diff --git a/public/quiz.html b/public/quiz.html index da9dd9d..fa8eb19 100644 --- a/public/quiz.html +++ b/public/quiz.html @@ -3,6 +3,7 @@ + Quiz diff --git a/src/css/styles.css b/src/css/styles.css index a220504..b95e105 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -101,6 +101,7 @@ form button { justify-content: center; align-items: center; padding: 20px; + width: 100%; /* Ensure chart takes full width */ } #question-block { @@ -110,6 +111,7 @@ form button { justify-content: center; align-items: center; padding: 20px; + width: 100%; /* Ensure question block takes full width */ } @media (min-width: 768px) {