h1 {
  font-size: 1.5em;
}
a {
  color: #55A4F1;
  text-decoration: none;
}
.tile-list{
  list-style-type: none;
  padding-left: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
}
.tile-list>li{
  width: 360px;
}
.item-link{
  display: block;
  width: 100%;
}
.item-link>img{
  display: block;
  width: 360px;
  height: 202px;
}
@media (min-width: 800px) {
  .tile-list>li{
    width: 240px;
  }
  .item-link>img{
    width: 240px;
    height: 135px;
  }
}
.item-link>.text{
  display: block;
  margin-top: 4px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

dialog[open] {
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(15px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

dialog.consent {
  margin: 0px;
  position: fixed;
  top: auto;
  bottom: 15px;
  left: 15px;
  box-sizing: border-box;
  max-width: calc(100vw - 30px);
  box-shadow: 0px 0px 5px #808080;
  
  border: none;
  border-radius: 8px;
  padding: 2rem;
}
dialog.consent>h2 {
  margin-top: 0px;
}
