body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color:black;
  height: 100%;
}

.grid-container {
  /*margin-top: 10%;
  margin-bottom: 10%;*/
  height: 100%;
  width: 100%;
  background-color: purple;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.grid-item {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  background-color: rgb(13, 13, 114);
}

.items {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  transform: scale(0.98);
  will-change: transform;
  user-select: none;
  cursor: pointer;
}

.item {
    display: inline-block;
    background: skyblue;
    margin: 10%;
    border-radius: 10vh;
    height: 30%;
    aspect-ratio: 16 / 9;
}