JSFiddle - React, Tailwind, and code Playground

HTML

<div id="customProfile">
 <div id="customHeader">
  <img src="http://assets.jollyrogerpcs.com/vampirefreaks/axel/cover.png" width="100%">
 </div>
 <div id="customMenu">
  <a href="#">VF Home</a>
  <a href="#">Gallery</a>
  <a href="#">Journal</a>
  <a href="#">Add Me</a>
  <a href="#">Rate & Comment</a>
 </div>
</div>

CSS

/* 
#67C8FF neon-blue 
#83F52C neon-green
*/
* {
   padding: 0;
   margin: 0;
   text-decoration: none;
   border: none;
   outline: none;
   list-style: none;
   transition: all 0.5s;
}
body {
   background-color: #000;
   text-align: center;
}
#customProfile {
   width: 900px;
   margin: 0 auto;
   text-align: left;
   border-left: 1px solid #67C8FF;
   border-right: 1px solid #67C8FF;

}
#customMenu {
   width: 900px;
   font-size: 0pt;
}
#customMenu a:link, #customMenu a:visited {
   display: inline-block;
   width: 20%;
   text-align: center;
   background-color: #67c8ff;
   font-size: 14pt;
   height: 30px;
   line-height: 30px;
}
img {
    display: block;
}