:root {
  --font-color-400: #dee1f2;
  --font-color-500: #d0d4ec;
  --font-color-600: #c2c7e7;
  --font-color-700: #b4bbe1;
  --font-color-800: #a6aedc;
  --font-color-900: #98a3d6;
  --theme-color-400: #66b0fc;
  --theme-color-600: #3f9dfb;
  --theme-color-800: #1989fa;
}

body {
  background-color: #171625;
  font-family: 'Nunito Sans', sans-serif;
}

main {
  height: 100svh;
}

section {
  padding-block: 5rem;
  width: min(100% - 40px, 380px);
}

h1, h2, p, a {
  letter-spacing: 0.2px;
}


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

figure {
  height: 11rem;

  img {
    width: auto;
    height: 100%;
    border-radius: 50%;
  }
}

.heading {
  margin-top: 10px;
  text-align: center;

  h1 {
    line-height: 1.2;
    margin-top: 14px;
    font-size: 3rem;
    font-weight: 500;
    color: var(--font-color-400);
  }

  h2 {
    margin-top: 0px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--theme-color-400);
  }
}

article {
  margin-top: 22px;

  p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--font-color-600);
  }

  p + p {
    margin-top: 12px;
  }
}

.buttons {
  margin-top: 33px;
  
  a {
    display: block;
    width: calc(50% - 8px);
    height: 4.4rem;
    line-height: 4.5rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    will-change: background-color;
  }

  .primary {
    background-color: var(--theme-color-800);
    color: #fff;

    &:hover {
      background-color: #2b92fa;
    }
  }

  .secondary {
    background-color: #201f2f;
    color: var(--font-color-400);

    &:hover {
      background-color: #242333;
    }
  }

  a + a {
    margin-left: 16px;
  }
}