header {
  /* background-color: rgba(255, 255, 255, 0.1); */
  background-color: rgba(255, 237, 213, 0.1);
  /* background-color: #ea580c; */
  /* background-color: #ffedd5; */
  padding: 0.5rem 0;
  color: var(--perma-primary-inverse);
  min-height: 96px;
  z-index: 1;
}

.logo-wrapper {}
.logo {
  width: auto;
  height: 3.75rem;
}

main {
  /* margin-top: -95px; */
}
main .section:last-child {
  margin-bottom: 0;
}

.main-layout-wrapper {
  background-color: #ea580c;
  background-image: url("../../assets/images/_VTgctRg0tA-large.jpg");
  background-size: cover;
  background-position-x: 50%;
  background-position-y: 50%;
  position: relative;
  /* text-align: center; */
}
.main-layout-wrapper .container > * {
  max-width: 498px;
}
.main-layout-wrapper h1 {
  --perma-h1-color: #ffffff;
}
.main-layout-wrapper h2 {
  --perma-h2-color: #ffffff;
}
.main-layout-wrapper p {
  --perma-body-color: #ffffff;
}

footer {
  --perma-body-color: #000000;
  /* background-color: rgba(0, 0, 0, 0.1); */
  background-color: #ea580c;
  /* color: #ffedd5; */
  padding: 1.0rem 0;
}
footer .hosting-info {
  /* --perma-body-color: #ffedd5; */
  color: #000000;
}
footer a {
  --perma-body-color: #000000;
  --perma-primary-underline: #000000;
}
footer a:hover,
footer a:active,
footer a:focus {
  --perma-primary-hover: #ffedd5;
  --perma-primary-hover-underline: #ffedd5;
}

.fixed-top {
  position: fixed;
  /* top: 0; */
  left: 0;
  /* bottom: 0; */
  right: 0;
}

.h-100 {
  height: 100%;
}
.mt-auto {
  margin-top: auto;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}


.center-screen {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* filter: alpha(opacity=40); */
  /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; */
  opacity: 0.4;
}
.overlay.overlay-dark {
  background-color: #333;
}
