@import url(https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap);

body {
  font-family: 'Source Serif 4';
  background: #fffff8;
  color: #111111;
}

footer {
  width: 80%;
  margin: 0 10%;
  padding: 0;
  position: relative;
  font-family: monospace;
  text-align: center;
}

hr {
  height: 4px;
  border: 0;
  color: #111111;
  background: #111111;
}

main {
  font-size: 1.3rem;
  width: 80%;
  margin: 0 10%;
  padding: 0;
  position: relative;
}

::selection {
  color: #111111;
  background: #f9e6ab;
}

.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.columns {
    position: relative;
    margin: auto;
    /* margin-top: 10%; */
    /* margin-bottom: 0; */
    /* height: 80%; */
    /* width: 80%; */
    column-gap: 2rem;
    display: block;
}

.left_column {
    max-width: 400px;
    margin: auto;
    display: block;
}

.right_column {
  margin: 10% 10% 0 10%;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: left;
}

/* tablet breakpoint */
@media (min-width:1200px) {
    .columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 50%;
    }
    .left_column {
        margin: 0;
        width: 100%;
    }
    .right_column {
        margin: 0;
        font-size: 1.3rem;
    }
}

.email {
    font-family: monospace;
    font-size: 1rem;
}

a {
    text-decoration: none;
    /* font-style: italic; */
    color: #955c41;
}

a:hover,
a:active {
    background: #FDF7E4;
    color: #111111;
    border-radius: 12px;
}

h1 {
    font-style: italic;
    font-size: 2rem;
}

h2 {
    font-weight: normal;
    font-style: italic;
    font-size: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

dl {
    margin-left: 20px;
}

dt {
    font-size: 1.4rem;
    font-weight: bold;
}

dd {
    margin-left: 20px;
    margin-bottom: 0.7rem;
}

dl ul ol {
    margin: 0;
}

.links {
    text-align: center;
    margin-top: 0.7rem;
}

svg {
    height: 2.5rem;
    width: 2.5rem;
}

.scroll-top {
  position: absolute; /* relative to its positioned <main> parent */
  top: 90vh; /* starts below the bottom of the screen */
  bottom: 0; /* stops scrolling before the end */
  right: 0; /* offset from right hand side */
}

.scroll-top__link {
  position: -webkit-sticky; /* for Safari */
  position: sticky; /* 'relative' until element reaches... */
  top: 90vh; /* 90% viewport height from the top, when it becomes 'fixed' - until its container toggles it back to 'relative' */
  font-size: 1.5rem;
  /* font-style: italic; */
  opacity: 0.7;
}
