:root {
  --white: #ffffff;
  --black: #333333;
  --purple: #28005e;
  --purple-alt: #af60ff;
}

:root {
  --body-background-color: var(--white);
  --body-text-color: var(--black);
  --body-size: 16px;
  --body-overflow-x: hidden;
  --body-overflow-y: scroll;
  --body-rendering: optimizeLegibility;
  --body-min-width: 300px;
  --body-font-family: Inter, SF Pro, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Helvetica, Arial, sans-serif;
  --body-font-size: 1rem;
  --body-weight: 400;
  --body-line-height: 1.5;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  height: auto;
  max-width: 100%;
}

html {
  background-color: var(--body-background-color);
  font-size: var(--body-size);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: var(--body-min-width);
  overflow-x: var(--body-overflow-x);
  overflow-y: var(--body-overflow-y);
  text-rendering: var(--body-rendering);
  text-size-adjust: 100%;
}

html.is-dark {
  --body-background-color: var(--purple);
  --body-text-color: var(--purple-alt);
}

body {
  color: var(--body-text-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-weight);
  line-height: var(--body-line-height);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  align-items: center;
  display: flex;
  flex: 1;
}

.main .container {
  flex: 1;
}

.container {
  padding: 3rem 1.5rem;
}

.branding {
  font-weight: 900;
}

.title {
  font-size: 1.5rem;
  line-height: 1.25;
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.25;
}

.title:not(:last-child) {
  margin-bottom: 1.5rem;
}

/**
 *------------------------------------------------------------------------------
 * Profile
 *------------------------------------------------------------------------------
 */

.profile {
  max-width: 768px;
}

.profile-picture {
  border-radius: 100%;
  height: 100px;
  margin-bottom: 1.5rem;
  width: 100px;
}

.profile-picture__image {
  border-radius: inherit;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .profile-content {
    font-size: 1.5rem;
  }
}

.profile-content__label {
  font-size: 0.75rem;
  line-height: 1.25;
}

@media screen and (min-width: 768px) {
  .profile-content__label {
    font-size: 1rem;
  }
}

.profile-content__title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

@media screen and (min-width: 768px) {
  .profile-content__title {
    font-size: 3rem;
  }
}

/**
 *------------------------------------------------------------------------------
 * Social
 *------------------------------------------------------------------------------
 */

.social__item {
  display: inline-block;
}

.social__item:not(:last-child) {
  margin-right: 1.5rem;
}

.social__item a {
  color: inherit;
  text-decoration: none;
}

.social__item .ti {
  font-size: 1.75em;
}

/**
 *------------------------------------------------------------------------------
 * Follow
 *------------------------------------------------------------------------------
 */

.follow__item a {
  color: inherit;
  text-decoration: none;
  font-size: 2em;
}

.follow__item a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .follow__item a {
    font-size: 3em;
  }
}
