/* Font-family: JetBrains Mono */
@font-face {
  font-family: "JetBrains Mono";
  src: url(../assets/JetBrainsMono-2.304/fonts/variable/JetBrainsMono[wght].ttf)
    format("truetype");
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", sans-serif;
  background-color: black;
  color: white;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.container {
  height: 20vh;
  width: 100%;
  padding: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  gap: 35px;
}

.bio {
  display: flex;
  flex-wrap: wrap;
}

h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}

.bio a {
  text-decoration: none;
}

.bio a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: inherit;
}

.social-links {
  display: flex;
  flex-direction: inline-flex;
  gap: 20px;
}
