:root {
    --card-shadow: rgba(0, 0, 0, 0.25);
    --card-dark-color: #d2d3d5;
    --card-dark-color-hover: rgb(75, 75, 75);
    --card-light-color: rgb(240, 108, 0);
    --card-light-color-faded: rgba(240, 108, 0, .25);
}

.image-card {
  background: linear-gradient(to right,white,white,rgba(0, 77, 77, .15));
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  border: 2px solid var(--card-dark-color);
  display: flex;
  flex-wrap: wrap;
  color: rgb(90,90,90);
}

.image-card h3 {
  color: rgb(90,90,90);
  font-weight: 400;
}

.image-card-image {
  margin: 0 auto;
  position: relative;
  flex: 40%;
}

.image-card-content {
  margin: 0 auto;
  padding: 2em;
  position: relative;
  flex: 60%;
}

.image-card img {
  position: relative;
  min-height: 5rem;
  max-height: 40rem;
  max-width: 90%;
  display: block;
  margin: 10px;
}

.img-shadow {
  box-shadow: 10px 5px 5px var(--card-shadow);
}

.image-card-dark-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 20rem;
  max-height: 40rem;
  max-width: 90%;
  display: block;
  margin: 10px;
}

@media (max-width: 800px) {
  .image-card-content, .image-card-image {
    flex: 100%;
  }
}

.highlight-button {
  width: max-content !important;
  border: 2px solid var(--card-light-color);
  box-shadow: none;
  color: var(--card-light-color);
  background: black;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.5s ease;
  transform: scale(1, 1);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.highlight-button:hover {
  background: var(--card-dark-color-hover);
}

.white-background {
  background: white !important;
}

.white-background:hover {
  background: var(--card-light-color-faded) !important;
}
