* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;              
}

body {
  font-family: 'Bitcount', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #ffffff;
  background: transparent;
}

.games {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px;
  padding-left: 280px;           
}

.info {
  text-align: center;
}

.headline {
  font-size: 4.5rem;
  margin-bottom: 32px;
}

.fav-title {
  font-size: 1.6rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.game-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.game-item {
  font-size: 1.8rem;
}

.viewer {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
}

model-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
}