@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: Besley;
  src: url(src/fonts/Besley-variable.ttf) format("truetype");
  font-style: normal;
}
@font-face {
  font-family: Besley;
  src: url(src/fonts/Besley-Italic-variable.ttf) format("truetype");
  font-style: italic;
}
@font-face {
  font-family: Cooper;
  src: url(src/fonts/Cooper-variable.ttf) format("truetype");
  font-style: normal;
}
@font-face {
  font-family: Cooper;
  src: url(src/fonts/Cooper-Italic-variable.ttf) format("truetype");
  font-style: italic;
}
* {
  box-sizing: border-box;
}
html {
  overflow: auto;
}
body {
  padding: 16px;
  background-color: #1e1e2e;
  color: #bac2de;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#bioContainer {
  background-color: #313244b0;
  width: 50vw;
  max-width: 1200px;
  min-width: min-content;
  /* min-height: 600px; */
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 32px;

  border-radius: 2.5vw;
}
#pfp {
  width: 256px;
  height: 256px;
  border-radius: 100%;
}
#name {
  font-family: "Cooper", Georgia, "Times New Roman", serif;
  color: #f5c2e7;
  font-size: 128px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
  line-height: 1.25em;
}
#subname {
  font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 32px;
  margin-top: 0px;
  text-align: center;
}
.footer {
  font-size: 32px;
  font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
  text-align: center;
}
footer a {
  color: #f5c2e7;
}
