:root {
  --primary-color: rgba(0, 44, 94, 0.45);
  --secondary-color: rgba(212, 28, 28);
  --overlay-color: rgba(50, 83, 121, 0.9);
  --menu-speed: 0.75s;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* body {
  font-family: initial;
  line-height: 1.4;
} */
.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 3rem;
}
#showcase {
  /* background: var(--primary-color);
  height: 100vh;
  color: #fff; */
  position: relative;
}
#showcase:before {
  content: "";
  /* background: url(../img/showcase.jpg) no-repeat center center/cover; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#showcase .showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
#showcase h1 {
  font-size: 1.3em;
}
.btn {
  display: inline-block;
  border: none;
  background: #ff6347;
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin: 1rem;
  transition: all 1s ease-in-out;
  text-decoration: none;
}
.btn:hover {
  background: #d41c1c;
}
