body {
  --color-button: 253, 174, 241;
  --color-button-text: 255, 255, 255;
  --color-text: 255, 255, 255;
  background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
  color: rgba(var(--color-text));
}

header,
section,
nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

button {
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  color: rgba(var(--color-button-text));
  background: rgba(var(--color-button), 0.2);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(var(--color-button), 0.4);
}

button:hover {
  --color: 245, 245, 245;
}

.images {
  flex-direction: row;
  flex-wrap: wrap;
}

.images div {
  width: calc(25% - 10px)
}

.images img {
  width: 100%
}

nav {
  padding: 10px 5px;
}
