html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

.about {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  overscroll-behavior: none;
  box-sizing: border-box;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about::-webkit-scrollbar {
  display: none;
}

.about section {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.7rem;
}

.info-grid {
  display: flex;
  flex-direction: row;
  width: 30%;
  height: 100%;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-left: 1rem;
}


.info-scroll {
  display: flex;
  flex-wrap: wrap;
  width: 62%;
  height: 100%;
  gap: 4rem;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
  padding-left: 2rem;
}

.info-scroll::-webkit-scrollbar {
  display: none;
}

h1 {
  font-family: modus, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.02em;
  margin-bottom: -0.1rem;
}

p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
  max-width: 69ch;
  font-family: satoshi, sans-serif;
  hyphens: auto;
  text-wrap: pretty;
}

.spacer-inline {
padding-left: 4em;
}

.info-grid a {
  font-size: 1.1rem;
  line-height: 1.25;
  text-decoration: none;
  color: black;
  transition: filter .2s ease-in-out;
  width: fit-content;
  font-family: satoshi, sans-serif;
}

.info-scroll a {
  font-size: 1.1rem;
  line-height: 1.25;
  color: black;
  transition: filter .2s ease-in-out;
  width: fit-content;
  font-family: satoshi, sans-serif;
}


.entry {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0rem;
  /* max-width: 80ch; */
  margin-bottom: 0.3rem;
}


.link {
  transition: filter .2s ease-in-out;
  cursor: pointer;
}

.link:hover {
  filter: blur(2px);
}



@media(max-width:800px) {
  .about {
    overflow-y: auto;
    gap: 2rem;
  }
  .info-grid {
    width: 100%;
    height: 50%;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-bottom: 2rem;
  }
  
  
  .info-scroll {
    width: 100%;
    height: fit-content;
    overflow-y: hidden;  
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* .entries {
    width: 98vw;
  } */

  .entry {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    padding-bottom: 0.6rem;
  }
}