:root {
  --primary-color: #e50914;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  /* background: #000; /*black */
  color: #999; /*dark grey*/
}

ul {
  list-style: none;
}
/*
 Heading color white not grey
 */
h1,
h2,
h3,
h4 {
  color: #fff; /*white*/
}

/*
	anchor tag no underline
	color white
*/
a {
  text-decoration: none;
  color: #fff;
}

p {
  font-size: 0.5rem 0;
}

img {
  width: 100%;
}

.showcase {
  width: 100%;
  height: 100vh; /* 100% of view port height*/
  position: relative;
  background: url(../images/showcase.jpg) no-repeat center center;
  background-size: cover;
}
.showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: inset 320px 100px 250px #000;
}
.showcase-top {
  position: relative;
  height: 90px;
  z-index: 2;
}

.showcase-top img {
  width: 170px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.showcase-top a {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.showcase-content {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 9rem;
  z-index: 2;
}

.showcase-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.showcase-content p {
  font-size: 1.9 rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.4rem 1.3rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  margin-right: 0.5rem;
  box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.45);
  opacity: 0.8;
}

.btn:hover {
  opacity: 1;
}

.btn-rounded {
  border-radius: 5px;
}

.btn-xl {
  font-size: 2rem;
  text-transform: uppercase;
  padding: 1.5rem 3rem;
}

.btn-large {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}
