@import url("./colors.css");
@import url("./reset.css");
:root {
  --bgc: #000000;
  --divider: #030303;
  color: #fff;
  font-family: "Inter";
}

body {
  background-color: var(--bgc);
}

.bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #000;
  background-image: url("../img/2.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.2);
}

.banner {
  background-color: var(--bgc);
  color: #fff;
  height: 82px;
  padding: 12px;
  border-bottom: solid 4px var(--divider);
  display: flex;
  justify-content: center;
  display: none;
}

.banner .logo {
  height: 100%;
}

.wrap {
  background: linear-gradient(to bottom, #080808, var(--bgc));
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  width: 640px;
  display: flex;
  flex-direction: column;
  background-color: #000000dd;
  margin: 64px 0 0 0;
  padding: 48px 24px 24px 24px;
  border-radius: 64px;
  filter: drop-shadow(0 0 6px #00000099);
}

.profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.profile .pfp {
  width: 128px;
  border-radius: 50%;
}

.profile .name {
  font-size: 32px;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 32px 0 0 0;
  gap: 24px;
}

.links a {
  padding: 12px;
  border-radius: 128px;
  border: solid 4px #ffffff06;
  background-color: #00000050;
  transition:
    background-color 0.3s,
    border-color 1s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link_logo {
  aspect-ratio: 1/1;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 50%;
}

.link_logo img {
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upscale {
  transform: scale(1.5);
}

.placeholder {
  width: 64px;
}

.platform_title {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}
