:root {
  --background-color: #fff;
  --text-color: #000;
  --font-family: Arial, helvetica, sans-serif;
  --pfp-size: 37px;

  --announcement-bg-c: #fff;
  --announcement-br-c: #9e9e9e;
}

@media (prefers-color-scheme: dark) {
  :root {
    --announcement-bg-c: #07080f;
    --announcement-br-c: #4b4b4b;
    --background-color: #060e11;
    --text-color: #fff;
  }
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
}
body {
  display: flex;
  height: 100vh;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100vw;
}

section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
  margin: 15px;
  padding: 12px;
}

div.announcement {
  align-items: center;
  background-color: var(--announcement-bg-c);
  border: var(--announcement-br-c) 1px solid;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px;
  width: 50vw;
}

div.user {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 75%;
}
.name {
  font-style: italic;
  letter-spacing: 2.5px;
}

div.data {
  text-align: center;
  width: 100%;
}
header.a-title {
  font-size: 2.75rem;
}

img.pfp {
  border: none;
  border-radius: 100%;
  height: var(--pfp-size);
  width: var(--pfp-size);
}

.dd {
  background-image: linear-gradient(30deg, #63cbff, #fb4141);
  background-clip: text;
  background-size: 100%;
  color: transparent;

  -webkit-background-clip: text;
}
.d {
  background-image: linear-gradient(30deg, #fff263, #846a1a);
  background-clip: text;
  background-size: 100%;
  color: transparent;

  -webkit-background-clip: text;
}
.a {
  background-image: linear-gradient(30deg, #87ff63, #2d841a);
  background-clip: text;
  background-size: 100%;
  color: transparent;

  -webkit-background-clip: text;
}
