:root {
  --background: url("../images/bg.jpg");
  --text-color: #fff;
  --blur: 0;
  --font: sans-serif;

  --font-size-big: 12vw;
  --font-size-medium: 4vw;
  --font-size-small: 2vw;
}

.with-picks {
  --font-size-big: 6vw;
  --font-size-medium: 2vw;
  --font-size-small: 1vw;
}

* {
  margin: 0;
}

html {
  height: 100%;
  font-family: var(--font);
  color: var(--text-color);
  background: #000 center/cover var(--background) no-repeat;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  display: block;
  background: #000 center/cover var(--background) no-repeat;
  -webkit-filter: blur(var(--blur));
  -moz-filter: blur(var(--blur));
  -o-filter: blur(var(--blur));
  -ms-filter: blur(var(--blur));
  filter: blur(var(--blur));
}

body {
  height: 100%;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.center > * {
  font-weight: bold;
  line-height: 1;
}

h1 {
  font-size: var(--font-size-big);
}

p {
  font-size: var(--font-size-medium);
  margin: 0 0 1vw
}

small {
  font-size: var(--font-size-small);
}

#picks {
  display: flex;
  width: 75vw;
  margin: 5vw 0;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#picks > a {
  display: block;
  height: 8vw;
  line-height: 8vw;
  font-size: 1vw;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color) 75%, white),
    var(--color),
    color-mix(in srgb, var(--color) 75%, black)
  );;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  transition-duration: .3s;
}

#picks > a:focus-visible,
#picks > a:hover {
  scale: 1.1;
}

#preferences {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 4vh;
  height: 4vh;
  margin: 16px;
  transition:transform .8s ease-in-out;
}

#preferences:hover {
  transform: rotate(180deg);
}

.hidden {
  display: none !important;
}
