JSFiddle - React, Tailwind, and code Playground

by akogch

HTML

<header id="masthead">
  <div class="masthead-inner">
    <nav class="main-nav">
      <h1 class="site-title">Maxitechture</h1>
      <ul class="top-nav">
        <li class="top-nav-link"> <a href="/">Home</a></li>
        <li class="top-nav-link"> <a href="#">About</a></li>
        <li class="top-nav-link"> <a href="#">Work</a></li>
        <li class="top-nav-link"> <a href="#">Services</a></li>
        <li class="top-nav-link"> <a href="#">Contact</a></li>
      </ul>
    </nav>
    <article class="masthead-text">
      <h2 class="masthead-text-headline">Precise Concept Design for Stylish Living</h2>
      <p class="masthead-text-subheadline">If you are looking at blank cassettes on the web, you may be very confused at the difference in price. You may see some for as low as $.17 each.</p>
      <button class="masthead-text-button">Get Started</button>
    </article>
  </div>
</header>

CSS

@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

img {
  width: 100%;
}

#masthead {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://source.unsplash.com/T0iFfJw-rB0);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100vw;
}

.masthead-inner {
  padding: 1rem 0;
}

@media (min-width: 1300px) {
  .masthead-inner {
    max-width: 1300px;
    margin: auto;
  }
}

.main-nav {
  padding: 1rem;
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 700px) {
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1300px) {
  .main-nav {
    width: 1200px;
  }
}

.main-nav.active-menu {
  background: #a7cb00;
}

.site-title {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  flex: 0 1 50%;
}

.top-nav {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex: 0 1 50%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 700px) {
  .top-nav {
    padding: 0;
  }
}

.top-nav-link a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.masthead-text {
  max-width: 80%;
  padding: 0 1rem;
}

@media (min-width: 700px) {
  .masthead-text {
    max-width: 60%;
  }
}

.masthead-text-headline {
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
}

@media (min-width: 700px) {
  .masthead-text-headline {
    font-size: 3rem;
  }
}

.masthead-text-subheadline {
  color: white;
  line-height: 1.3;
}

.masthead-text-button {
  background: #a7cb00;
  color: white;
  border: 0;
  padding: 1rem 2.5rem;
  border-radius: 7px;
  display: block;
  margin-top: 2rem;
}