.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 0;
}

.title h1 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.title h2 {
  margin: 0;
}

.logo {
  height: 128px;
  width: 128px;
}

.app-entry {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 220ms;
  background-color: var(--ls-app-entry-bgcolor);
}

a.app-entry {
  text-decoration: none;
}

.app-entry p {
  text-align: center;
}

.app-entry:hover {
  background-color: var(--ls-app-entry-bgcolor-hover);
}
