*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
  text-transform: lowercase;
}

:root {
  --bgcol: rgb(250, 250, 250);
  --textcol: rgb(30, 30, 30);
  --linkcol: rgb(106, 109, 215);
  --selection: rgb(135, 175, 255);
}

*::selection {
  background-color: var(--selection);
}

ul {
  list-style: none;
}

img, figure, picture, video {
  max-width: 100%;
  vertical-align: middle;
}

/* --------Typography&Layout----------- */



body {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  background-color: var(--bgcol);
  padding-inline: 1rem;
  color: var(--textcol);
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  line-height: 1.4;
}

.italic {
  font-style: italic;
}

a {
  color: var(--linkcol);
  opacity: .9;
  transition: opacity 200ms ease;
}

a:hover, a:active, a:focus {
  opacity: .3;
  text-decoration: none;
  outline: none;
}

span.arrow {
  text-decoration: none;
}

p.bodytext {
  padding-right: 2rem;
}

header {
  width: 100%;
  padding-block: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(var(--bgcol) 60%, transparent 100%);
  z-index: 10;
  text-shadow: 0 0 1px var(--bgcol);
}

.nav_ul {
  display: flex;
  gap: 1rem;
}

.you-are-here {
  font-style: italic;

  
}


main {
  padding-top: 6rem;
  display: grid;
  gap: 4rem;
}

.fabi_logo {
  width: 30px;
  margin-inline: auto
}

section {
  scroll-margin-top: 4rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.work{
  display: grid;
}

.work_info {
  opacity: .6;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  column-gap: .75rem;
}

.linktree {
  text-align: center;
}

main section:last-child {
  margin-bottom: 6rem;
}

/* -------Footer--------- */


footer {
  width: 100%;
  padding-block: 4rem 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(transparent 30%, var(--bgcol) 100%);
  z-index: 10;
  text-shadow: 0 0 1px var(--bgcol);
}