.feature-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

@media (max-width: 768px) {
  .feature-buttons {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .feature-buttons {
    flex-direction: row;
  }
}

.feature-buttons a {
  text-decoration: none;
  color: inherit;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: space-evenly;
  background-color: #ddd;
  border: 1px solid black;
  border-radius: 10px;
  height: 200px;
  width: 300px;
  box-shadow: 5px 7px #888888;
  transition: all 100ms;
}

.feature:active {
  transform: translateX(3px) translateY(3px);
  box-shadow: 0px 0px #888888;
}

.feature>h3 {
  margin: 0;
}

/*
Set the height to max(text-container.height, image-container.height)
Set the width to max(text-container.width, image-container.width)
*/
.outer-container {
  height: 138px;
  width: 245px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-container {
  height: 27px;
  width: 245px;
}

.image-container {
  height: 138px;
  width: 175px;
}