JSFiddle - React, Tailwind, and code Playground

HTML

<body>
		<div id = "body-container">
			<header id = "header">
				<div id = "header-content">
					<div id = "logo-container">
						<img src = "Images/SHCK Logo.png" alt = "SHC Logo">
					</div>
					<div id = "header-text-container">
						<div id = "header-text-top-container">
							<span id = "SACRED-HEART-COLLEGE">SACRED HEART COLLEGE</span>
							<span id =""></span>
						</div>
						<div id = "header-text-bottom-container">
							<span id = "Kyneton">Kyneton</span>
						</div>
						
					</div>
				</div>
			</header>
		</div>
	</body>

CSS

/*Code written by Oliver Murfett and Caelan Grgurovic 2015
Start Code*/

/*The following are classes that can be added to tags to give them certain features*/

.italics, i, em {
	font-style: italic;
}

.bold, b, strong {
	font-weight: bold;
}

.underline, u {
	text-decoration: underline;
}

.hidden {
	display: none;
}

/*Fonts*/
@font-face {
    font-family: "Open Sans-Regular";
    src: url(Fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: "Trajan Pro Regular";
    src: url(Fonts\Trajan Pro Regular.ttf);
}
/*The following styles are to the maximize page space*/
html, body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background-color: white;
	top: 0px;
	height: 100%;
	min-height: 100%;
}

#body-container {
	width: 100%;
	margin: 0px;
	padding: 0px;
	top: 0px;
	height: 100%;
	min-height: 100%;
}

header {
	width: 100%;
	margin: 0px;
	padding: 0px;
	top: 0px;
	height: 100px;
	
}

/*The following styles are to style the header*/

#header-content {
	width: 100%;
	margin: 0px;
	padding: 10px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;   
	box-sizing: border-box;    
	height: 100%;
	min-height: 100%;
}

#logo-container {
	height: 100%;
	min-height: 100%;
	float:left;
	margin-right: 20px;
}

#logo-container img {
	height: 100%;
	min-height: 100%;
}

#header-text-container {
	height: 100%;
	min-height: 100%;
}

#header-text-top-container {
	height: 50%;
	min-height: 50;
}

#header-text-bottom-container {
	height: 50%;
	min-height: 50px;
}

#SACRED-HEART-COLLEGE {
	font-family: "Trajan Pro Regular";
	font-size: 24px;
	color: rgb(30,30,117);
}