JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" type="text/css" href="index_style.css">
</head>
<body>

<div class="title">
<h1 class="title">some bits of my life.</h1>
</div>

<div class="menu-container">
	<div class="menu-item">
		<a href="">home</a>
	</div>
	<div class="menu-item">
		<a href="">writings</a>
	</div>
	<div class="menu-item">
		<a href="">gallery</a>
		<ul>
			<li><a href="">photos</a></li>
			<li><a href="">drawings</a></li>
			<li><a href="">videos</a></li>
		</ul>
	</div>
</div>

<div class="home-container">
	<p>
		I like those butts...I like those butts...I like those butts...I like those butts...
		I like those butts...I like those butts...I like those butts...I like those butts...
		I like those butts...I like those butts...I like those butts...I like those butts...
		I like those butts...I like those butts...I like those butts...I like those butts...
		I like those butts...I like those butts...I like those butts...I like those butts...
		I like those butts...I like those butts...I like those butts...I like those butts...
	</p>
</div>

</body>
</html>

CSS

* {
	margin: 0;
	padding: 0;
	font-family: "Courier new", Courier, monospace;
}

div.title {
	margin-top: 55px;
}

h1.title {
	text-align: center;
	font-size: 55px;
	color: Gold;
	width: 800px;
	margin: 0 auto 0 auto;
}

div.menu-container {
	width: 800px;
	margin: 45px auto 0 auto;
}

.menu-item {
	width: 33.33%;
	float: left;
}

.menu-item a {
	text-align: center;
	padding: 5px 0 5px 0;
	font-size: 25px;
	text-decoration: none;
	border-radius: 15px;
	margin: 0 15px 0 15px;
	font-weight: bold;
	display: block;
}

.menu-item a:link, .menu-item a:visited {
	color: Gold;
	background: WhiteSmoke;
	
}

.menu-item a:hover, .menu-item a:active {
	color: Orange;
	background: Gainsboro;
}

.menu-item ul {
	margin-top: 5px;
	list-style-type: none;
	height: 0px;
	overflow: hidden;
	
	-webkit-transition: height 1s ease;
    -moz-transition: height 1s ease;
    -o-transition: height 1s ease;
    -ms-transition: height 1s ease;
    transition: height 1s ease;
}

.menu-item:hover ul {
	height: 115px;
}

.menu-item ul li a {
	font-size: 20px;
	width: 80%;
	margin: 0 auto 0 auto;
	border-radius: 10px;
	margin-top: 5px;
}

div.home-container {
	clear: left;
}