body {
  background-attachment: fixed;
  background-color: #e8ebf2;
  background-image: url('../img/card-scroll.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.card-scroll {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  height: 400px;
  overflow-x: scroll;
}

.card-scroll::-webkit-scrollbar {
  display: none;
}

.card {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  height: 220px;
  padding: 1em;
  position: relative;
  width: 350px;
}

.card h2 {
  font-size: 1em;
  font-weight: 600;
  margin-top: 1em;
}

.card .number {
  margin-top: 8em;
}

.card .type {
  position: absolute;
}

.card:nth-child(1) .type {
  bottom: 0;
  right: 1em;
}

.card:nth-child(2) .type {
  right: 0;
  top: 2em;
  transform: rotate(270deg);
}

.card:nth-child(3) .type {
  bottom: 0;
  right: 1em;
}

.card:nth-child(4) .type {
  right: 1em;
  top: 0;
}

.card:nth-child(5) .type {
  bottom: 0;
  right: 1em;
}

.card:nth-child(6) .type {
  line-height: 100%;
  right: 1em;
  text-align: right;
  top: 0;
}

.card:nth-child(7) .type {
  right: -0.7em;
  top: 2em;
  transform: rotate(270deg);
}
