diff --git a/public/lit/texts.tsx b/public/lit/texts.tsx
index 441604eb81f9dbb0e962c332d7064ea65a80fd8f..40d4742af15405eb85be09aeee377f16f8aa6975 100644
--- a/public/lit/texts.tsx
+++ b/public/lit/texts.tsx
@@ -39,6 +39,15 @@ export const opening = [
         EN: "You probably don't even know what insulin is. I'll explain.",
     },
     {
-        EN: "Whaaat? Wait, stop!",
+        EN: "When we eat or drink, our body breaks down the sugar molecules and releases parts of it called glucose in our blood.",
+    },
+    {
+        EN: "That's great, because we all need some glucose. It is what gives us our energy.",
+    },
+    {
+        EN: "But it can only give us energy if it gets inside the cells.",
+    },
+    {
+        EN: "This is where the insulin comes into play!",
     },
 ]
diff --git a/src/components/Opening.tsx b/src/components/Opening.tsx
index 4428101269f9a7a322a3e05207256c1748a2e8a9..0b6ac92ff3ebfb56f57fb5a7c9f75c61981f219e 100644
--- a/src/components/Opening.tsx
+++ b/src/components/Opening.tsx
@@ -36,7 +36,7 @@ const Opening = () => {
         if (isAnimationComplete) {
             setCurrentIndex((prevIndex) => (prevIndex + 1) % opening.length);
             setIsAnimationComplete(false);
-            setPaused(true);
+            setPaused(false);
         }
     };
 
@@ -52,8 +52,8 @@ const Opening = () => {
 
                 <div className="max-w-screen">
                     <div className="text mt-12">
-                        <div id="intro-text" className="font-speech"
-                            style={{ position: 'absolute', top: 400, left: 0, right: 900 }}>
+                        <div id="intro-text" className="font-speech max-w-md"
+                            style={{ position: 'absolute', top: 350, left: 200, right: 900 }}>
 
                             <Typewriter
                                 options={{
@@ -67,7 +67,7 @@ const Opening = () => {
                                         .start()
                                         .callFunction(() => {
                                             setIsAnimationComplete(true);
-                                            setPaused(false);
+                                            setPaused(true);
                                         });
                                 }}
                             />