body {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
    helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  margin: 0;
  padding-top: 2vw;
  min-height: 100vh;
  width: 100vw;  
  background: linear-gradient(rgb(120, 61, 155), rgb(53, 41, 98));
}

div#big-board {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

div.board-thingy {
  display: inline-flex;
  width: 200px;
  height: 200px;
  margin: 10px;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 100px;
  align-items: center;
  justify-content: space-around;
  background-color: rgb(182, 62, 62);
  overflow: hidden;
  position: relative;
}

@keyframes xyz {
  from { color: black; }
  50% { color: white; }
  to { color: black; }
}

div.x {
  font-size: 24px;
  font-weight: bold;
  animation: xyz 30s infinite;
  position: relative;
  user-select: none;
  z-index: 2;
  color: black;
}

div.link {
  background-color: rgb(0, 0, 0);
  color: rgb(221, 208, 208);
}

div.link > a {
  font-size: 24px;
  font-weight: bold;
  animation: none;
  text-decoration: none;
  color: white;
  z-index: 2;
}

div.link:hover {
  background-color: rgb(63, 193, 245);
  color: #000;
}

div#see.link:hover {
  background-color: #d4a017;
}

div#think.link:hover {
  background-color: #1792da;
}

div#do.link:hover {
  background-color: #32a45c;
}

div#dont.link:hover {
  background-color: #e11313;
}

div#wtf.link:hover {
  background-color: #ff00cc;
}

div.link:hover a {
  font-size: 72px;
  font-stretch: condensed;
  color: #000;
}

@keyframes image-drift {
  0%   { opacity: 0; transform: translate(var(--start-x), var(--start-y)); }
  15%  { opacity: 1; transform: translate(var(--start-x), var(--start-y)); }
  80%  { opacity: 1; transform: translate(var(--end-x), var(--end-y)); }
  100% { opacity: 0; transform: translate(var(--end-x), var(--end-y)); }
}

img.circle-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 140%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  animation: image-drift var(--drift-duration) ease-in-out forwards;
}

a#about-this-site  {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 1px solid black;
}
