* {
	margin: 0;
	padding: 0;
  }
  
  body {
	font-family: sans-serif;
	overflow-x: hidden;
  }
  
  .showcase {
	width: 100%;
	height: 100vh;
	position: relative;
	color: white;
	text-align: center;
  }
  
  .showcase img {
	height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    object-fit: cover;
  }
  
  .showcase .overlay {
	width: 100%;
	height: 100vh;
	background-color: #1572a2c2;
	position: absolute;
	top: 0;
	left: 0;
	z-index:999
  }
  
  .showcase h2 {
	margin-top: 40vh;
	font-size: 3em;
  }
  
  .showcase p {
	margin-top: 8px;
	font-size: 1.2em;
  }
  