html, body { height: 100%; margin: 0px; padding: 0px; }

.container {
  padding-top: 0px;
}

#home-container {
  position: relative;
  text-align: center;
  color: #dcdcdc;
}

.main-logo {
  height: 140px;
}

/* Centered text */
.centered {
  background-color: #c0c0c0;
  color: #000000;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  background-image: linear-gradient(to right, #9c575d, #ffffff);
  border-radius: 50px !important;

  opacity: .75;
  padding: 25px;
  text-shadow: -1px -1px 0px rgba(0, 0, 0, 0.3), 1px 1px 0px rgba(255, 255, 255, 0.8);
}

#about-container, #contact-container, #gallery-container, #package-container, #send-email-container, #vendor-container {
  padding-top: 70px;
}

.bg-image {
  background-attachment: fixed;
  background-image: url('../img/gallery/cover photo.jpeg');
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.75;
}

.btn-primary {
  color: #000000 !important;
  background-color: #ecc5c0 !important;
  border: 2px solid #ecc5c0 !important;
  border-radius: 25px !important;
}

.btn-primary:hover {
  color: #ffffff !important;
  background-color: #9b666f !important;
  // box-shadow: inset 0 0 0 30rem #9b666f !important;
}

.btn-primary:active {
  box-shadow: inset 0 0 0 20rem var(--darken-2),
    inset 0 3px 4px 0 var(--darken-3),
    0 0 1px var(--darken-2);
}

.btn-primary:disabled,
.btn-primary.is-disabled {
  opacity: .5;
}

a.btn-neon {
  background: #ecc5c0;
  color: #ffffff;
  display: inline-block;
  padding: 6px 12px;
  position: relative;
  text-decoration: none !important;
  overflow: hidden;
  transition: 0.2s
}

a.btn-neon:hover {
  color: #ecc5c0;
  background: #9b666f;
  box-shadow: 0 0 10px #9b666f, 0 0 40px #9b666f, 0 0 80px #9b666f;
  transition-delay: 1s;
}

a span {
  position: absolute;
  display: block;
}

a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9b666f);
}

a:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}

a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #9b666f);
}

a:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}

a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #9b666f);
}

a:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}

a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #9b666f);
}

a:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}