JSFiddle - React, Tailwind, and code Playground

by Sebastian Brosch

HTML

<div id="container">
    <h1>John Doe</h1>
    <h2>Front-End Web Developer</h2>
    <p>I'm a Front-End Web Developer from Orlando, Florida</p>
    <p>I'm currently developing coding skill through <a href="http://example.com">Example</a> and am enjoying opening doors to being a digital nomad! I enjoy turning complex problems into simple, beautiful and intuitive interface designs.</p>
    <p>When I'm not coding or pushing pixels, you'll find me enjoying a bowl of coffee flavored ice cream with chocolate syrup and enjoying the theme parks that Orlando has to offer</p>
</div>

CSS

body, html {
    margin:0;
    padding:0;  
}
body {
	background:url('https://placehold.it/1920x1080');
    background-attachment:fixed;
    background-position:center;
    background-size:cover;
}
h1 {
    color:#000;
    display:block;
    font-family:arial, sans-serif;
    font-size: 28px; 
    font-weight:600;
    margin:0.5em 0 0;
    padding: 0.3em;
    text-align:left;    
}
h2 {
    background:#B593B5;
    border-radius:0 0 0 5px; 
    color:#fff; 
    display: block;
    font-family:arial, sans-serif;
    font-size:22px; 
    font-weight:600;
    margin:0.5em 0 0.75em;
    padding:0.3em; 
    text-align:left;
}
p {
    font-family:arial, sans-serif;
    font-size:16px; 
    line-height:1.5; 
    margin:1em 2em 0 0; 
    text-align: left; 
}
a {
    color:#bd85ac; 
    font-weight:500; 
    text-decoration: none; 
}
a:hover {
    color:#7f7c97;
}
#container {
    background:rgba(255, 255, 255, 0.7);
    border-radius:10px 0 0 10px; 
    float:right;
    margin:5em 0;
    padding:2em 0 2em 2em; 
    width:22em;
}