JSFiddle - React, Tailwind, and code Playground

by moku23

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Impresa Pulizie Torino</title>
    <style>
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: #f9f9f9;
            color: #333;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
        }
        header {
            background: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        header h1 {
            margin: 0;
            font-size: 24px;
        }
        header ul {
            padding: 0;
            list-style: none;
            text-align: center;
            margin: 10px 0 0 0;
        }
        header li {
            display: inline;
            padding: 0 20px;
        }
        header a {
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
        }
        .showcase {
            height: 100vh;
            background: url('https://media.istockphoto.com/id/949220048/it/foto/computer-per-la-pulizia-delle-donne-in-ufficio.jpg?s=1024x1024&w=is&k=20&c=AmYZ6S68KSXXREuC5Q9lwXU1DOtPR4WuTvIvypeDCBM=') no-repeat center center/cover;
            text-align: center;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 80px;
        }
        .showcase h1 {
            font-size: 55px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .showcase p {
            font-size: 20px;
           ...