:root {
  --white: #B8C2B9;
  --black: #382B26;
  --red: #FE4A49;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min-content;
  height: min-content;
  
  background-color: var(--black);
  color: var(--white);
  font-family: sans-serif;
  text-align: center;
}

#icon {
  --size: 8rem;
  width: var(--size);
  height: var(--size);
  background-image: url("/aberrantian_light.webp");
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: pixelated;
}

#icon:hover {
  background-image: url("/aberrantian_dark.webp");
  background-color: var(--white);
}

#username {
  font-family: monospace;
  text-decoration: wavy underline var(--red);
}

/* Without font-size, username is not the same size */
h1 {
  font-size: 2rem;
}

a {
  text-decoration: underline;
  color: var(--white);
}

a:hover {
  background-color: var(--white);
  color: var(--black);
}

.link-hidden {
  text-decoration: none;
}

.link-hidden:hover {
  cursor: vertical-text;
  background-color: transparent;
  color: var(--white);
}

.link-button {
  text-decoration: none;
  border: 2px solid var(--white);
  padding: 8px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 4px solid var(--white);
  width: 100%;
}

.note {
  background-color: var(--red);
  color: var(--black);
  font-weight: bold;
  padding: 1px;
}