@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

* {
  box-sizing: border-box;
}

.life-page-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

.life-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  flex: 1 1 calc(16.67% - 1rem);
  min-width: 150px; 
  text-align: center;
  color: whitesmoke;
  border-radius: 8px;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .life-card {
    height: 300px;
  }
}
.life-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-image: var(--bg-image);
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.life-card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.life-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.life-content > * + * {
  margin-top: 1rem;
}

.life-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 8px #000000;
}

.life-copy {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.35;
}

.life-btn {
  cursor: pointer;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: #B62025;
  border: none;
}
.life-btn:hover {
  background-color: #FDB913;
  color: white;
  font-size: 1.3rem;
}

.life-btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

a .life-btn {
  color: inherit;
}

a .life-btn:hover {
  color: white; 
}

@media (hover: hover) and (min-width: 600px) {
  .life-card:after {
    transform: translateY(0);
  }

  .life-content {
    transform: translateY(calc(100% - 8rem));
  }
  .life-content > *:not(.life-title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .life-card:hover,
.life-card:focus-within {
    align-items: center;
  }
  .life-card:hover:before,
.life-card:focus-within:before {
    transform: translateY(-4%);
  }
  .life-card:hover:after,
.life-card:focus-within:after {
    transform: translateY(-50%);
  }
  .life-card:hover .life-content,
.life-card:focus-within .life-content {
    transform: translateY(0);
  }
  .life-card:hover .life-content > *:not(.life-title),
.life-card:focus-within .life-content > *:not(.life-title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .life-card:focus-within:before, .life-card:focus-within:after,
.life-card:focus-within .life-content,
.life-card:focus-within .life-content > *:not(.life-title) {
    transition-duration: 0s;
  }
}