@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&family=Raleway:wght@300&display=swap");

body {
  line-height: 1.6;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

.wrapper {
  width: 100%;
  background-color: white;
  position: relative;
}

.box {
  border: 1px solid #582707;
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  height: auto;
}

/* element selectors */
h1,
h2 {
  font-family: "Indie Flower", cursive;
}

h2 {
  font-size: 3rem;
  line-height: 1;
  margin: 1em 0;
}

a {
  color: #C88304;
}

/* navigation */
/* older iOS won't render nested CSS*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f5f3f5; /* Adjust the background color as needed */
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
  z-index: 999; /* Ensure the header appears above other elements */
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  max-width: 150px;
  height: auto;
  margin: 40px auto 0;
  padding: 1em;
}

header ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

header ul li:not(:last-child) {
  margin-right: 2em;
}

header ul li a {
  text-decoration: none;
  color: #C88304; /* link color */
}

header ul li:hover a {
  color: #3F0071; /* link color on hover */
  text-decoration: underline; /* underline on hover */
}

header ul li:visited a {
  color: #582707; /* visited link color */
}

header ul li:active a {
  color: #F5F3F5; /* active link color */
}

murphy {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}

murphy img {
  max-width: 100%;
  height: auto;
  padding: 3em;
}


article {
  width: 100%;
  position: relative;
  margin-top: 88vh;
}

article:last-child {
  margin-bottom: 88vh;
}

article picture.backdrop {
  position: absolute;
  width: 100%;
  height: 99%;
  left: 0;
  top: 0;
}

article picture.backdrop img {
  width: 100%;
  height: 88%;
  object-fit: cover;
  object-position: bottom;
  filter: blur(90px) brightness(95%) contrast(70%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(1.5) scaleY(1.14);
}

article .front {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: center;
  transform: translateY(70px);
  box-sizing: border-box;
  padding: 20px;
  perspective: 100vh;
}

article .front::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 8px;
  bottom: 0;
  transform: translateY(-26px);
  left: 10%;
  background-color: black;
  box-shadow: 0 1px 2px rgba
}

/* put the footer in it's own space */
footer {
  display: flex;
  justify-content: center;
  padding: 5px;
  background-color: #150050;
  color: #c88304;
  position: relative;
  z-index: 333;
}

