@charset "UTF-8";
/* CSS Document */
/* CORE STYLES */
:root {
  --primary-color: rgba(39, 32, 26, 0.80);
  --overlay-color: rgba(139, 110, 24 , 0.85);
  --menu-speed: 0.75s;
}

/*  --primary-color: rgba(13, 110, 139, 0.75);     rgba(139, 110, 13, 0.75);
  --overlay-color: rgba(24, 39, 51 , 0.85);
  --menu-speed: 0.75s;     */

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

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

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

.showcase {
  /* background: var(--primary-color);*/
  color: #fff;
  height: 100%;
  position: relative;
	/*  border: 1px solid blue;  */
}

.showcase:before {
  content: '';
  /*background: url("../../cover_art/Ecstasis_CDcover_512_noText.jpg") no-repeat center center fixed;
  background-size: cover;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.showcase .showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  text-align: left;
  height: 100%;
    border: 0px solid yellow;  
}

/* .    .showcase h1 {
  font-size: 4rem;
}     */

.showcase p {
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 1s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}

