html {
  height: 100%;
}
body {
  height: 100vh;
  background: rgba(14, 14, 16);
  background-image: url("background.webp");
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Work Sans", sans-serif;
  color: rgba(247, 247, 247);
  font-size: 15px;
  text-align: center;
  display: flex;
  justify-content: safe center;
  align-items: safe center;
  width: 95%;
  max-width: 700px;
  margin: 0 auto;
}
.avatar {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  background-image: url("avatar.webp");
}
content {
  width: 100%;
  margin: auto;
}
main {
  margin-top: 20px;
  margin-bottom: 20px;
  background: rgba(20, 20, 23);
  padding: 15px 15px 15px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
a {
  color: rgba(153, 51, 255);
  text-decoration: none;
  cursor: pointer;
}
nav a {
  text-decoration: none;
  display: flex;
  justify-content: safe center;
  align-items: safe center;
  font-size: 20px;
  border-radius: 7px;
  width: 30px;
  height: 30px;
  padding: 5px 10px 5px 10px;
  background-color: rgba(27, 27, 31);
}
li {
  display: inline-block;
  margin: 0 2px 0 2px;
}
.inline {
  width: 100%;
  height: auto;
  display: flex;
}
.inline .left {
  display: flex;
  justify-content: safe center;
  align-items: safe center;
  width: 50%;
  margin: 0 9px 0 0;
}
.inline .right {
  width: 50%;
  margin: 0 0 0 9px;
}
.background {
  background-color: rgba(27, 27, 31);
  border-radius: 10px;
  padding: 15px 15px 15px 15px;
}
.name {
  font-size: 17px;
  font-weight: bold;
}
.about {
  font-weight: bold;
  color: rgba(153, 51, 255);
}
* {
  margin: 0;
  padding: 0;
}