JSFiddle - React, Tailwind, and code Playground
HTML
<div class="jumbotron">
<div class="container">
<h1 class="text-center"><span class="first">UZER</span><span class="last">JAMAL</span></h1>
<p class="text-center" id="respon">Responsive web designer</p>
<p class="text-center" id="langs">HTML - CSS - BOOTSTRAP - JQUERY</p>
</div>
</div>
CSS
.jumbotron {
height: 100vh;
background: url('./Images/Jumbo.jpg') no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
width: 100%;
position: absolute;
top: 80%;
transform: translate(-50%, 0) z-index: -100;
}
h1 {
margin-bottom: -0.7em;
}
h1 .first {
color: white;
font-family: secretcode;
font-size: 2em;
}
h1 .last {
color: #bd902e;
font-family: aku;
font-size: 1.7em;
}
.jumbotron #respon {
font-family: geosans;
color: white;
font-size: 4em;
margin-bottom: -0.2em;
}
.jumbotron #langs {
font-family: geosans;
color: #bd902e;
font-size: 2em;
}