/* the pruple */
:root{
    --gn-purple: #aa89c3;
}

/* sticky footer */
html {
    position: relative;
    min-height: 100%;
  }
  body {
    margin-bottom: 80px;
  }
  .gn-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-color: var(--gn-purple);
    padding-bottom: -1em;
  }

.container .footer-text {
  margin: 20px 0;
  color: white;
}

/* title */
.site-title {
    font-weight: bold;
    font-style: oblique;
}

.site-subtitle {
    font-style: italic;
    font-size: smaller;
    display: block;
}

/* navigation bar */
.nav-link {
    font-size: x-large;
    font-weight: bold;
    margin-right: 30px; 
}

/* scroll bar shift fix */
.container {
  padding-left: calc((100vw - 100%) / 2);
}

/* add padding above and below content */
.container:not(.gn-footer) {
  padding-top: 1em;
  padding-bottom: 1em;
}
