body {
  font-size: 16px;
  margin: 1rem;
  background-color: #f5f5f5;
}

.tile-container {
  width: 70vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tile-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tile {
  width: 32%;
  min-height: 35vh;
  /* background-color: #ffffff; */
  border-radius: 0.5rem;
  position: relative;
}

.tile-bg {
  border-radius: 0.5rem;
  /* background-image: url("./assets/bg.jpeg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(0.5px);
  width: 100%;
  height: 250px;
}

.tile a {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  text-align: center;
  text-shadow: 0 0 10px #000, 0 0 20px #000;
}

/* .tile a:hover {
  font-size: 1.5rem;
  font-weight: 500;
  transition: font-size 1s;
} */

.sub-heading {
  margin-top: 1rem;
  background-color: #d6d4d4;
  border-radius: 0.5rem;
  padding: 4px 2px;
}
