<div id="worldContainer">
<h1>Hello, world.</h1>
<h2>Sometimes I feel like</h2>
<h4 id="shadow">I'm a shadow of my former self.</h4>
</div>
body {
background: lightgrey;
}
#worldContainer {
background: lightblue;
width: 400px;
margin: 30px auto;
border-radius: 300px 300px 400px 5px;
padding: 20px;
box-shadow: 1px 2px 4px grey;
}
h1, h2, h3 {
text-align: center;
}
h1 {
font-size: 44px;
font-family: Garamond, Times New Roman, serif;
}
h2 {
font-size: 20px;
margin: -26px 0 0 -20px;
font-family: Garamond, serif;
}
#shadow {
font-size: 12px;
position: relative;
top: 80px;
left: -220px;
text-shadow: 1px 8px 7px black;
text-align: center;
font-family: Helvetica, sans-serif;
letter-spacing: .15em;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.