/* body {
background-image: url('./pics/green_smoke.jpg');
background-position: 100%;
background-color: rgb(0, 0, 0);
margin-top: 20%;
background-repeat: no-repeat;
background-size: 1000% 300%;
} */

/* ===== Background fade animation setup ===== */
body {
  position: relative;
  margin: 0;
  overflow: hidden;
  font-family: 'Interlope', Helvetica, Arial, sans-serif;
  background-color: #000;
}

main {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

/* Two layered backgrounds for crossfade */
.background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  z-index: -2;
}

/* the one on top will fade in/out */
.background-layer.top {
  opacity: 0;
  z-index: -1;
}



h1 {
/* font-family:'Garamond', Arial, sans-serif; */
font-size: 3rem;
text-align:center;
text-shadow: 2px 2px 10px rgba(255, 255, 255, 1.0);
 z-index: -1;
}

h2 {
/* font-family:'Garamond', Arial, sans-serif; */
font-size: 2rem;
text-align:center;
text-shadow: 2px 2px 10px rgba(255, 255, 255, 1.0);
 z-index: -1;
}
/* .house-part {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  max-width: 250px;
  min-width: 50px;


  filter: drop-shadow(0 0 15px rgb(191, 197, 192)) 
          drop-shadow(0 0 25px rgb(76, 87, 78)) 
          drop-shadow(2px 4px 8px rgba(0,0,0,0.5));
  mix-blend-mode: screen;

  opacity: 0.9;
  transform: rotate(0deg);
  transition: transform 0.7s ease-in-out, filter 0.7s ease-in-out, opacity 0.7s ease-in-out;
} */


/* @font-face {
  font-family: 'Interlope';
  src: url('./fonts/Interlope-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */

@font-face {
  font-family: 'Playfair';
  src: url('PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Garamond';
  src: url('EBGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}