* {
  box-sizing: border-box;
}

html {
  --fontFamily: "Inter", sans-serif;
  --fontWeightRegular: 400;
  --fontWeightSemiBold: 600;
  --fontWeightBold: 700;
  --fontSize: 14px;
  --letter-spacing: 0px;

  --textpreset1-bold: var(--fontWeightBold) 24px/150% var(--fontFamily);
  --textpreset2-regular: var(--fontWeightRegular) 14px/150% var(--fontFamily);
  --textpreset2-bold: var(--fontWeightBold) 14px/150% var(--fontFamily);

  /* colors */
  --color-grey-900: #141414;
  --color-grey-800: #1f1f1f;
  --color-grey-700: #333333;
  --color-green: #c4f82a;
  --color-white: #ffffff;

  font-size: var(--fontSize);
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: var(--letter-spacing);
}

html,
body {
  min-height: 100vh;
}

body {
  margin: 0;
  position: relative;
}

h1,
h2,
p,
ul,
button {
  margin: 0;
}

p {
  font: var(--textpreset2-regular);
}

ul {
  padding: 0;
  list-style: none;
  font: var(--textpreset2-bold);
}

button {
  padding: 0;
}

.SocialProfileBody {
  font-family: var(--fontFamily);
  font-weight: var(--fontWeightRegular);
  background-color: var(--color-grey-900);
  color: var(--color-white);
}

.container {
  position: absolute;
  display: grid;
  gap: 20px;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* attribution */
.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}
