html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #121212;
}

.content {
  width: 640px;
  max-width: calc(100% - 30px);
}

.logo {
  width: 200px;
  max-width: 100%;
}

.palette {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 64px rgb(0 0 0 / 16%);
  margin: 48px 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform 1s ease, box-shadow 1s ease;
}
.palette:hover {
  transform: scale(0.98);
  box-shadow: 0px 12px 48px rgb(0 0 0 / 16%);
}

.colors {
  aspect-ratio: 10 / 3;
}

.color {
  display: inline-block;
  width: 20%;
  height: 100%;
}

.title {
  font-size: 24px;
  padding: 6px 24px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.hint {
  text-align: center;
  font-weight: 400;
  color: #a3a3a3;
}
