#circle {
  position: relative;
  border-radius: 100%;
  padding: 16px;
 	animation: rotate-animation 8s infinite linear;
}

#circle span {
  position: absolute;
  transform-origin: top left;
}

@keyframes rotate-animation {
  from { transform: rotate(0); }
  to { transform: rotate(-360deg); }
}

/* Misc. */
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
	font-family: 'Helvetica', sans-serif;
  font-size: 24px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* -- Links -- */

#links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 100;
  padding: 1rem;
}

.meta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-link > :is(span, a) {
	font-family: 'Helvetica', sans-serif;
  font-size: 3.25rem;
  color: rgb(44, 44, 44);
  -webkit-font-smoothing: antialiased;

}

.meta-link > .label {
  text-align: right;
}

.meta-link > a {
  text-decoration: none;
  outline: none;
}

.meta-link > a.button1 {
  color: rgb(20, 20, 20);
}

.meta-link > a:is(:hover, :focus) > i {
  color: rgb(44, 44, 44);  
}

.meta-link > a.button2 {
  color: rgb(20, 20, 20);
}

.meta-link > a.button2 > i {
  padding-top: 0.2rem; 
}

.meta-link > a > i {
  height: 1rem;
  line-height: 1rem;
}