﻿.tile-list {
  height: 100%;
  background-color: #f0f0f0;
  padding: 10px;
}
.tile-list h1 {
  color: #5f5f5f;
}
.tile-list .tile-collection {
  display: flex;
  gap: 10px;
  padding: 20px;
}
.tile-list .tile-collection .tile {
  flex: 0 0 220px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  border: 1px solid #fff;
  cursor: pointer;
  text-decoration: none;
  color: #222;
  background-color: #fff;
  padding-top: 30px;
}
.tile-list .tile-collection .tile:hover {
  border-color: #7e7e7e;
}
.tile-list .tile-collection .tile .tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  margin: 20px;
}
.tile-list .tile-collection .tile .tile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tile-list .tile-collection .tile .tile-content h2 {
  font-size: 1.3em;
  margin-bottom: 10px;
}
.tile-list .tile-collection .tile .tile-content p {
  font-size: 0.7em;
  text-align: center;
}
