body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  animation: fade-in 0.25s steps(3);
}

main{
  display: flex;
  gap: 2.5em;
}

#utility{
  position: relative;
  background: url(/images/voyage/utility.png) center no-repeat;
  width: 300px;
  height: 335px;
  border: 1px dotted #bcbcbd;

  &::before{
    content: "";
    position: absolute;
    pointer-events: none;
    top: -108px;
    left: -1px;
    background: url(/images/voyage/utility2.png) center no-repeat;
    width: 300px;
    height: 500px;
  }
}

#utility div{
  position: absolute;
  bottom: -15px;
  right: 50px;
  display: flex;
  gap: 0.5em;
  font-size: 10px;

  span{
    color: #bcbcbd;
  }
}

nav{
  top: 1em;
  right: 1em;
  text-align: right;

  span{
    margin-left: 1.25em;
  }
}

h2:first-of-type{
  margin-top: 0;
}

a:not(nav a, .icon){
  color: #98a5af !important;
  font-family: Arial, sans-serif;
  font-size: 10px;
  text-decoration: 1px underline dotted #9b9998;
  letter-spacing: 1px;
}

a:hover{
  color: #78828a !important;
}

.tab{
  width: 300px;
  max-height: 335px;
  padding: 0 1em;
  overflow-y: auto;

  a{
    font-weight: bold;
    font-style: italic;
  }

  p:last-of-type{
    margin-bottom: 0;
  }
}

ul{
  padding: 0 2em;
}

/* sections */

#elsewhere div{
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.25em;

  img{
    width: 88px;
    height: 31px;
    border: 1px dotted #bcbcbd;
    filter: saturate(0.25);
    transition: filter 0.2s steps(3);
  }

  img:hover{
    cursor: grab;
    filter: none;
  }
}

#resources > div{
  display: flex;
  justify-content: space-between;

  ul{
    margin-top: 0.25em;
  }
}

#reminisce{
  display: flex;
  flex-direction: column;
  gap: 1em;

  img{
    image-rendering: auto;
    width: 100%;
    border: 1px dotted #bcbcbd;
    outline: 1px solid #fff;
    outline-offset: -2px;
    filter: saturate(0.25);
    transition: filter 0.25s steps(3);
  }

  img:hover{
    filter: none;
    cursor: grab;
  }
}