:root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  color: white;
  background-color: #0f172b;
}

main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100vw;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

h1 {
  font-size: x-large;
  font-weight: 700;
}
h2 {
  font-size: medium;
  font-weight: 500;
}

hr {
  margin: 10px 0px;
  border-style: double;
  border-width: 1px;
  color: white;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid white;
  display: block;
}

.social-icons {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  gap: 16px;
}
.social-icons li {
  list-style: none;
}
.social-brand {
  height: 24px;
  filter: invert();
}
