JSFiddle - React, Tailwind, and code Playground

HTML

<body>

 <header>
 	<h1><a href="/">Projekt Seite</a></h1>
    
    <p id="address">
		Straße & Hausnummer<br>PLZ / Ort
	</p>
    
    <p id="phone">
		<span class="telmail">Tel:</span> 000 - 123<br>
		<span class="telmail">Fax:</span> 000 - 123
	</p>
 </header>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>

 <figure>
     <div>
     	<img src="http://placehold.it/300x200" alt="Mitarbeiter 1" />
     </div>
     <figcaption>
        <span>Name der Person</span>
        <span>Was macht diese Person in der Firma?</span>
     </figcaption>
 </figure>
 
 <footer>
    ...

CSS

html {
	border-top: 4px solid black;
}

body {
	font-family:Verdana, Geneva, sans-serif;
	font-size:1em;
	width:935px;
	margin:0 auto;
	position: relative;
}

a {
	color: black;
	text-decoration: none;
	border: 0;
}

header h1 {
	border-bottom: 1px solid #b2b2b2;
	height: 110px;
	width:935px;
}

header h1 a {
	display: block;
	width: 400px;
	height: 0;
	padding-top: 100px;
	overflow: hidden;
	background: url("../img/logo.png") no-repeat left 45px;
}

.telmail {
	width: 2.5em;
	display:inline-block;
}

#address {
	position: absolute;
	display: block;
	right: 190px;
	top: 55px;
	font-size:0.69em;
	color:#909090;
	line-height: 1.5em;
}

#phone {
	position: absolute;
	display: block;
	right: 0;
	top: 55px;
	font-size:0.69em;
	color:#909090;
	line-height: 1.5em;
}

figure:nth-child(3n){
    position: relative;
    width: 310px;
    height: 200px;
	float:left;
	margin:0 0px 20px 0
}

figure {
    position: relative;
    width: 310px;
    height: 200px;
	float:left;
	margin:0 7px 20px 0
}

figure>div {
    transition: all 1s ease;
    position: relative;
    width: 310px;
    height: 150px;
    overflow: hidden;
    z-index: 10;
}

figure>div:hover {
    width: 310px;
    height: 320px;
    z-index: 10;
}

figure>div img {
    z-index: 10;
}

figcaption {
    display: block;
    position: absolute;
    width: 400px;
    bottom: 5px;
    z-index: 5;
}

figcaption span {
    display: block;
}

figure span:nth-child(1){
	font-weight:bold;
    font-size:0.85em;
    margin-bottom:2px;
}

figure span:nth-child(2){
	font-size:0.75em;
    color:#333;
}
        
        
footer {
	clear:left;
	border-top: 1px solid #b2b2b2;
	color: #909090;
	padding-top: 15px;
	font-size: 10px;
	margin-bottom: 30px;	
}