body {
  background-color: #fff6ea;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}

header {
  min-height: 500px;
  text-align: center;
  position: relative;
}

header.background {
  background-image: url('background.jpg');
  /*background-image: url('angie.jpeg');*/
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

header h1, header h3 {
  font-style: italic;
  text-shadow: 0px 0px 12px #fff;
}

.edge {
  --tile-size: 12px;
}

header .edge {
  background-image: conic-gradient(transparent 45deg, #fff6ea 45deg, #fff6ea 315deg, transparent 315deg);
  /*background-image: conic-gradient(transparent 30deg, #fff6ea 60deg, #fff6ea 300deg, transparent 330deg);*/
  background-repeat: repeat-x;
  background-size: var(--tile-size) var(--tile-size);
  bottom: 0;
  height: var(--tile-size);
  left: 0;
  position: absolute;
  right: 0;
}

nav {
  width: fit-content;
  background-color: #000000aa !important;
  border-radius: 16px;
}

.navbar-toggler {
  margin:  0 auto;
}

/*  */

a {
  text-decoration: none;
}

/* footer */

footer {
  margin-top: auto;

  background-image: url('footer-bg.jpeg');
  /*background-image: url('angie.jpeg');*/
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

footer a {
  color: inherit;
}

footer .edge {
  height: var(--tile-size);
  background-image: conic-gradient(#fff6ea 45deg, transparent 45deg, transparent 315deg, #fff6ea 315deg);
  background-size: var(--tile-size) var(--tile-size);
  background-repeat: repeat-x;
}

footer .background {
  background-color: #000000aa;
  color: rgba(255,255,255,.55);
}

/* About */
.accordion-item, .accordion-button, .accordion-button:not(.collapsed) {
  background-color: inherit;
  color: inherit;
}

.accordion-button:focus {
  box-shadow: unset !important;
}

/* gallery */

.img {
  background: url('') 50% 50% no-repeat;
  background-size: cover;
  background-clip: content-box;
  cursor: pointer;
}

#gallery-root {
  cursor: pointer;
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2147483647 !important; /* Sit on top */

  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

#gallery-root img {
  object-fit: contain;
  z-index: 2147483647 !important;
  margin: auto;
  display: block;
  height: 100vh;
  width: 100vw;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

span[class|=gallery-button] {
  color: rgb(255, 255, 255);
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-weight: bolder;
  position: absolute;
  text-shadow: 0 0 30px black;
  font-size: 75px;
  user-select: none;
  -webkit-user-select: none;
  padding: 0 32px;
  transition: 0.5s ease;
}

span[class|=gallery-button]:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.gallery-button-close {
  top: 0;
  right: 0;
}

.gallery-button-prev, .gallery-button-next {
  top: 50%;
  width: auto;
  margin-top: -75px;
}

.gallery-button-prev {
  left: 0;
}

.gallery-button-next {
  right: 0;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .picture-content {
    width: 100%;
  }
}
