*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root
{
  --bg: #000000;
  --panel: #171a21;
  --border: #252933;
  --text: #f5f5f5;
  --radius: 14px;
}

html, body
{
  height: 100%;
}

body
{
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
}

.page
{
  width: min(900px, 92%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header
{
  padding: 70px 0 40px;
  display: flex;
  justify-content: center;
}

.logo
{
  width: 75px;
  height: 75px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .12em;
  background: var(--panel);
}

.logo img
{
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
}

.content
{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
}

.blurb
{
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  max-width: 520px;
  margin: 30px auto 10px;
  padding: 16px 20px;
  color: var(--text);
}

.socials
{
  width: 100%;
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.socials a
{
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
  text-align: center;
  transition:
  background .2s,
  border-color .2s,
  transform .2s;
}

.socials a:hover
{
  background: #20242d;
  border-color: #3c4352;
  transform: translateY(-2px);
}

.socials img
{
  width: 30px;
  height: 30px;
}

.icon
{
  width: 32px;
  height: 32px;
}

.discordicon
{
  fill: #5865f2;
}

.facebookicon
{
  fill: #1877f2;
}

.githubicon
{
  fill: #ffffff;
}

.instagramicon
{
  fill: #ffffff;
}

.tiktokicon
{
  fill: #ffffff;
}

.twitchicon
{
  fill: #9146ff;
}

.xicon
{
  fill: #ffffff;
}

.youtubeicon
{
  fill: #ff0000;
}

.footer
{
  margin-top: auto;
  padding: 30px 0;
  text-align: center;
  color: var(--text);
  font-size: .82rem;
}

.discord-widget
{
  border: 0;
  background: transparent;
  position: fixed;
  right: 24px;
  bottom: 24px;
}

@media (max-width: 700px)
{
  .socials
  {
    grid-template-columns: 1fr;
  }

  .discord-widget
  {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .page
  {
    padding-bottom: 20px;
  }
}
