:root {
  --primary-color:rgba(250, 248, 248, 0.148);
  --secondary-color: rgb(224, 223, 223, 0.23);
  --menu-speed: 0.4s;
}

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

body {
  font-family: 'Poppins',sans-serif;
  line-height: 1.4;
}

#showcase {
  position: relative;
  height: 100vh;
  background: var(--secondary-color);
  color: white
}

#showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/nature-3082832.jpg) no-repeat center center/cover;
  z-index: -1;
}

.container {
  margin: auto;
  max-width: 960px;
  overflow: hidden;
  padding: 0 3rem;
}

#showcase .showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

#showcase .showcase-container h1 {
  font-size: 3.5rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5rem;
}

#showcase .showcase-container p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#showcase .showcase-container .btn {
  background: bisque;
  padding: 0.5rem 1rem;
  text-align: center;
  color: #333;
  text-decoration: none;
  border-radius: 15px;
  transition: background var(--menu-speed) ease;
}

#showcase .showcase-container .btn:hover  {
  border: 1px whitesmoke solid;
  color: white;
 background: transparent;
}

#showcase div:last-child {
  position: absolute;
  color: rgb(208, 200, 200);
  top: 95%;
  left: 87%;
  z-index: 1;
}