JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <nav>
        <p>Ich bin die Navigation</p>
    </nav>
    
    <div id="content">
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
        <p>Ich bin der Inhalt</p>
    </div>
</body>

CSS

* {
    padding: 0;
    margin: 0;
}

html,body {
    font: 14px Sans-serif;
    background-color: #c8cac9;
    padding: 10px 20px;
}

nav {
    background-color: #5ebc95;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px;
}

div#content {
    background-color: #e0e0e0;
    min-height: 1000px;
    margin-top: 30px;
    padding: 14px;
}