JSFiddle - React, Tailwind, and code Playground
by Vladimir Sobolev
HTML
<!DOCTYPE html>
<html>
<head>
<title>Test Task - Anthony Singh</title>
</head>
<body>
<div id="box">
<div id="container">
<span>Hello World</span>
</div>
</div>
</body>
</html>
CSS
@import url(http://fonts.googleapis.com/css?family=Economica);
html, body {
height:100%;
width:100%;
}
#box {
top: 50%;
position:relative;
display: block;
}
#container {
background-color: #F00;
margin: 0 auto;
height: 100px;
width: 300px;
border:5px solid #000;
text-align: center;
}
#container span {
font-size: 30px;
color: #fff;
height: 35px;
width: 150px;
position: relative;
margin: 0 auto;
top: 30%;
font-family: 'Economica', sans-serif;
}