JSFiddle - React, Tailwind, and code Playground

HTML

<div id="cart">
    Shopping Cart
</div>

<div id="info">
    Product info
</div>

<div id="center">
    <p><strong>Neurotic?  We prescribe sex:</strong>  The problem's very simple, as stated in the <a href="http://spp.sagepub.com/content/early/2010/10/09/1948550610387162.full.pdf+html">first sentence of this article</a>:  "A robust literature indicates that neuroticism has numerous negative implications for romantic relationships."  So, what's a neurotic to do?  Apparently, roll in the hay.  "A lagged multilevel analysis revealed that although neuroticism was negatively associated with marital satisfaction on average," the authors continue, "it was unrelated to marital satisfaction when couples had engaged in relatively frequent sex over the past 6 months."  Given the propensity of people to lie about how often they're having sex, the authors were careful to ask both halves of the couple what their sexual frequency was.
    </p>
    <p>
        <strong>No word on whether sex helps the antisocial, but marriage apparently does:</strong>  Men who are married tend to be less antisocial, but is that a cause or effect?  In other words, are antisocial males less likely to get married, or does marriage reduce antisocial tendencies?  <a href="http://archpsyc.ama-assn.org/cgi/content/abstract/67/12/1309">A bit of both</a>, it seems.  Antisocial men are less likely to get married, but it seems that, if they do manage to tie the knot, their partners help mellow their discomfort with others.  The study took a bit of an unusual approach, in that it estimated how antisocial someone would be if they weren't married by testing for these tendencies in a monozygotic twin.  Identical twins show lots of characteristics in common, but this seems to be a fairly large logical leap.
    </p><!--page 1--><p>
    <strong>And here I'd assumed it was all about making fun of foreigners:</strong>  We tend to assume that mimicking a person's accent is a form of mockery, making it clear that a...

CSS

#cart, #info {
    position: relative;
    color: white;
    padding: 10px;
}

#cart {
    width: 100px;
    height: 50px;
    background: orange;
    
    left: 0;
    top: 20px;
}

#info {
    background: #3F709B;
    width: 80px;
    height: 100px;
    
    right: 0;
    top: 100px;
}

#center {
    position: absolute;
    left: 140px;
    right: 120px;
    
    line-height: 1.4em;
}

#center p {
    margin-bottom: 1.5em;
}

strong {
    font-weight: bold;
}