:root {
  --light-blue: #aacdc6;
  --dark-blue: #214756;
  --light-grey: #dedede;
  --dark-grey: #232323;
  --dark-green: #2d4d47;

  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--dark-grey);
}

body {
  display: flex;
  justify-content: center;
}

.wrapper {
  max-width: 800px;
  border: 1px solid var(--light-grey);
  box-shadow: 0px 0px 8px 2px #ccc;
  -moz-box-shadow: 0px 0px 8px 2px #ccc;
  -webkit-box-shadow: 0px 0px 8px 2px #ccc;
  -khtml-box-shadow: 0px 0px 8px 2px #ccc;
}

nav {
  z-index: 10;
  position: relative;
  width: 100%;
  padding: 7px 10px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid var(--light-grey);
  background-color: #fff;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
}

nav a {
  margin-left: 15px;
  color: var(--dark-grey);
}

.peony-top {
  z-index: -1;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
}

.peony-bottom {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
}

.peony-top img,
.peony-bottom img {
  width: 50%;
  opacity: 0.3;
}

.inner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 10px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.inner-wrapper > div {
  margin-bottom: 1rem;
}

.inner-wrapper > div:last-child {
  margin-bottom: 0;
}

.memoriam {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}

.memoriam h1 {
  text-align: center;
}

.hero {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 30px !important;
}

.hero-image {
  width: 60%;
  border: 4px solid #fefefe;
  box-shadow: 0px 0px 8px 2px #ccc;
  -moz-box-shadow: 0px 0px 8px 2px #ccc;
  -webkit-box-shadow: 0px 0px 8px 2px #ccc;
  -khtml-box-shadow: 0px 0px 8px 2px #ccc;
}

.obit {
  padding: 0 10px;
}

p {
  margin-bottom: 1rem;
  text-align: center;
}

.quote {
  width: 100%;
  padding: 25px;
  background-color: var(--light-blue);
  color: var(--dark-green);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
}

.gallery-wrapper {
  display: flex;
  flex-flow: column nowrap;
  padding: 10px;
  background-color: var(--light-blue);
}

.photo-sub {
  color: var(--dark-green);
  font-weight: 600;
  text-align: center;
}

.light-blue {
  color: var(--light-blue);
}

.dark-blue {
  color: var(--dark-blue);
}

.caps {
  text-transform: uppercase;
}

.bold {
  font-weight: 600;
}

.big-text {
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (min-width: 500px) {
  .peony-top {
    top: -30px;
  }

  .peony-top img {
    width: 40%;
  }

  .obit {
    max-width: 500px;
  }
}

@media screen and (min-width: 600px) {
  .quote p {
    max-width: 600px;
  }
}

@media screen and (min-width: 800px) {
  .peony-top {
    top: -100px;
  }

  .peony-top img {
    width: 35%;
  }
}
