:root {
  --Black: #2f2827;
  --Lighter-Black: #5f5c5c;
  --Darker-Black: #151515;
  --Bluesky-Blue: #1185FE;
  --Discord-Purple:#5865f2;
  --Telegram-Blue:#3faee8;
  --Onlyfans-Blue:#00AEEF;
}

body {
  background-color: var(--Black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.profile-image,
.header-icon {
  border: 0px solid transparent;
  border-radius: 150px;
}

.header-icon {
  width: 40px;
  height: auto;
  margin-right: 5px;
}

.profile-image {
  margin-top: 25px;
  margin-bottom: 25px;
}

.project-buttons,
.link-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  width: 300px;
  margin-bottom: 25px;
  margin-top: 50px;
  gap: 15px;
}

.project-buttons{
  justify-content: flex-start;
}

.header-bar,
.footer-bar {
  background-color: var(--Darker-Black);
  min-height: 50px;
  width: 100vw;
  display: flex;
  align-items: center;
}

.header-bar {
  justify-content: space-between;
}

.footer-bar{
  justify-content: center;
  color: white;
}

.copyright-text{
  font-size: 12px;
}


.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

h1 {
  color: white;
  font-size: 48px;
}

.button {
  width: 100%;
  height: 55px;
  background-color: var(--Darker-Black);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

ul{
  display: flex;
  gap: 20px;
  margin-left: 25px;
  justify-content: center;
  align-items: center;
}

a{
  text-decoration: none;
  color: white;
}

.icon{
  padding-right: 5px;
}

.bluesky-button{
  background-color: var(--Bluesky-Blue);
}

.twitter-button{
  background-color: var(--Darker-Black);
}

.discord-button{
  background-color: var(--Discord-Purple);
}

.telegram-button{
  background-color: var(--Telegram-Blue);
}

.steam-button{
  background-image: linear-gradient(90deg, #09172a, #072a57, #0c5085);
}

.vrc-button{
  background-color: white;
  color: black;
}

.vrc-icon{
  width: 29px;
  height: auto;
}

.github-button{
  background-color: var(--Darker-Black);
}

.fans-button{
  background-color: var(--Onlyfans-Blue);
}

.sketch-button{
  background-color: red;
  color: goldenrod;
  justify-content: space-around;
}

.knob{
  width: 30px;
  height: 30px;
  border: solid 1px black;
  border-radius: 30px;
  background-color: white;
}

.title{
  font-weight: bold;
  margin-bottom: 25px;
}

.bio{
  color: white;
  text-align: center;
}