* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Helvetica, Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #0b0b0e;
  color: #e6e6eb;
}

a {
  color: #9b7bff;
  text-decoration-style: none;
  text-decoration-line: none;
  font-size: 13px;
}

a:hover {
  text-decoration-style: dotted;
  text-decoration-line: underline;
}

.container {
  width: 728px;
  margin: 0 auto;
  padding-top: 20px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
}

.logo-mark svg {
  fill: #9b7bff;
}

.logo-text a {
  font-size: 32px;
  font-weight: 200;
  color: #9b7bff;
}

.top-links {
  height: 100%;
  text-align: right;
  font-size: 12px;
  align-self: center;
}

.top-links a {
  margin-left: 10px;
}

/* Navigation */
nav {
  margin: 20px 0 40px;
}

nav a {
  margin-right: 18px;
  font-size: 14px;
}

/* Hero banner */
.hero {
  background: #9b7bff;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.hero h2 {
  color: #fff;
  font-size: 36px;
  font-weight: normal;
}

.hero h2 strong {
  font-weight: bold;
}

.hero-arrangement {
  display: flex;
  gap: 8px;
}

/* Hero ad-banner */
.leadup {
  background: #9c7bff50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-self: center;
  aspect-ratio: 728/90;
}
.leadup a {
  height: 100%;
  width: 100%;
  aspect-ratio: 728/90;
}

.fullbanner img {
  max-width: 728px;
  max-height: 90px;
  height: 100%;
  width: 100%;
}

.tiny-hero {
  height: 160px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px;
  justify-content: center;
}

.tiny-hero h2 {
  color: #fff;
  font-size: 36px;
  font-weight: normal;
}

.tiny-hero h2 strong {
  font-weight: bold;
}

/* Footer links */
.footer-links {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
}

.footer-links p {
  display: block;
  margin-bottom: 6px;
}

footer {
  font-size: 11px;
  color: #8a8a96;
  justify-self: center;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.botd {
  text-align: center;
  justify-content: center;
  color: #8a8a96;
  font-size: small;
}

.mdwrap {
  margin: 32px 0 0 0;
}

md-block h1 {
  color: #9b7bff;
  font-weight: 100;
  margin-bottom: 8px;
}

md-block ul {
  line-height: 32px;
  margin-top: 8px;
  margin-left: 32px;
}

.pfp img {
  border-radius: 100%;
  height: 128px;
}

.profile-banner {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  color: #ddd;
  align-content: center;
  align-items: center;
}


.profile-content {
  display: flex;
  padding: 20px;
  position: relative;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 100%;
  margin-right: 20px;
  background: #000;
}

.profile-info {
  flex: 1;
  align-content: center;
}

.username {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.meta {
  font-size: 13px;
  color: #aaa;
}

.bio {
  font-size: 14px;
  margin-bottom: 10px;
}

.userbars img {
  height: 20px;
  margin-right: 4px;
  margin-top: 4px;
}
/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9b7bff50;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9b7bff;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
  header {
    padding: 0 16px;
  }
  .logo-text a {
    font-size: 24px;
  }
  .top-links {
    padding: 0 16px;
  }
  nav {
    padding: 0 16px;
  }
}
