:root {
  --font-main: 'Helvetica', sans-serif;
}

body {
  margin: 0;
  background-color: #fafaf9;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

.visualizer-selector {
  display: flex;
  flex-direction: column;
  place-items: center;
}

.title {
  font-size: 64px;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.subtitle {
  font-size: 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 300px));
  gap: 40px;
}

.cell {
  aspect-ratio: 1 / 1;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.5rem;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  padding-top: 2em;
  height: 100%;
  will-change: transform;
  text-decoration: none;
}

.cell:hover {
  transform: translateY(-3px);
}

.cell img {
  object-fit: contain;
  width: 100%;
  max-height: calc(100% - 3em);
  padding-top: 1em;
}
