body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
max-width: 600px;
margin: 40px auto;
padding: 0 20px;
color: #333;
background-color: #f9f9f9;
}
h1 {
color: #8b5cf6;
text-align: center;
font-size: 2.2rem;
}
.cta-container {
text-align: center;
margin: 30px 0;
}
.btn {
display: inline-block;
background-color: #8b5cf6;
color: white;
padding: 14px 28px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
font-size: 1.2rem;
box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
transition: transform 0.2s, background-color 0.2s;
}
.btn:hover {
background-color: #7c3aed;
transform: translateY(-2px);
}
.card {
background: white;
padding: 24px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
margin-bottom: 25px;
}
.warning {
border-left: 5px solid #ef4444;
background-color: #fee2e2;
}
.warning h2 {
color: #b91c1c;
margin-top: 0;
}
ol {
padding-left: 20px;
}
li {
margin-bottom: 12px;
}
ul {
margin-top: 5px;
padding-left: 20px;
}
You can add Leeyamsworld directly onto your mobile home screen or computer desktop as a dedicated app:
Please note that you need an active WiFi or internet connection to run the app properly. The software relies on a live internet stream to safely connect directly to the MIT servers and load your Scratch project data assets.
// Ensure the service worker registers immediately from the entry landing page
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(reg => console.log('Landing page service worker registered scope:', reg.scope))
.catch(err => console.log('Landing page registration tracking failed:', err));
});
}