body{
  background: #f0cf91 url(/images/other/bg-stripe.png);
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #3b3734;
}

.wrapper{
  display: flex;
  gap: 1em;
}

main{
  background: #f8f7f6;
  padding: 1.25em;
  border: 1px solid #b3aeaa;
  width: 350px;
  text-align: justify;
}

aside{
  justify-content: space-between; 

  a{
    display: flex;
    background: #f8f7f6;
    border: 1px solid #b3aeaa;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;

    color: #393b34;
    font-family: coolvetica, sans-serif;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.1s ease;
  }

  a:hover{
    color: #272422;
    background: #eeecea;
  }
}

.sc, .sr{
  display: flex;
  gap: 1em;
}

.sc{flex-direction: column;}
.sr{flex-direction: row;}

header{
  position: relative;

  #header{
    display: block;
    width: 100%;
    pointer-events: none;
    border: 1px solid #c5c2c0;
  }
}

#sticker{
  height: 95px;
  width: 95px;
  float: left;
  margin-right: 1em;
  filter: var(--outline);
  vertical-align: middle;
  pointer-events: none;
}

h1{
  color: #f8f7f6;
  text-shadow:
    -1px -1px 0 rgba(59, 55, 52, 0.6), 
    1px -1px 0 rgba(59, 55, 52, 0.6),
    -1px 1px 0 rgba(59, 55, 52, 0.6),
    1px 1px 0 rgba(59, 55, 52, 0.6);
  font-family: coolvetica, sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 43px;
  
  pointer-events: none;
  position: absolute;
  bottom: 0;
  right: 7px;
}

h2{
  color: #8b9759;
  pointer-events: none;
  font-family: coolvetica, sans-serif;
  font-weight: normal;
  font-size: 17px;
}

#updates{
  height: 110px;

  div{
    width: 50%;
    gap: 0.35em;
    overflow-y: auto;
    padding-right: 0.25em;
  }
}

#albums{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25em;

  img{
    filter: saturate(0.6);
    width: 100%;
    border: 1px dotted #c5c2c0;
    transition: all 0.1s ease;
  }

  img:hover{
    cursor: help;
    filter: saturate(1);
  }
}