body {
background-image: url("9.png");
background-size: cover;
background-position: right;
background-repeat: no-repeat;
background-attachment: fixed;
transition: background-color 1.5s ease;
padding-bottom: 80px;

font: 80% 'Courier New', monospace;
margin: 0;
}

/* center layout */
html, body {
  height: 100%;
  margin: 0;
}

/* navigation */
#navigation {
position: absolute;
top: 40px;
left: 40px;
}

#navigation ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#navigation a {
  text-decoration: none;
  color: #e6e6e6;

  display: block;
  padding: 6px 10px;
  margin-bottom: 6px;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid #333;

  opacity: 0.9;
  animation: navFlicker 8s infinite;
}

@keyframes navFlicker {
  0%, 100% { opacity: 0.95; }
  97% { opacity: 0.95; }
  98% { opacity: 0.6; }
  99% { opacity: 1; }
}

#navigation a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.95);
  border-color: #555;
}

/* main container */
body #content {
  width: 65%;
  max-width: 650px;
  height: 520px;
  overflow-y: auto;
  margin: 80px auto 0 auto;
  padding: 25px;
  border: 1px solid #444;
  box-shadow: 10px 10px 0 #0d0d0d;
  text-align: left;
  position: relative;
  animation: breathe 6s ease in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    box-shadow: 6px 6px 0 #0d0d0d;
  }
  50% {
    box-shadow: 8px 8px 0 #050505;
  }
}

#content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    z-index: 0;
}

#content > * {
    position: relative;
    z-index: 1;
}

.archive-month {
  width: 65%;
  max-width: 650px;
  height: 320px;
  overflow-y: auto;

  margin: 80px auto 40px auto;
  padding: 25px;

  border: 1px solid #444;
  box-shadow: 10px 10px 0 #0d0d0d;

  text-align: left;
  position: relative;
}

.archive-month:nth-child(odd) {
  background: rgba(0,0,0,0.20);
}

.archive-month:nth-child(even) {
  background: rgba(0,0,0,0.30);
}

.archive-month h1 {
  font-size: 24px;
  letter-spacing: 1px;
  margin: 0 0 15px 0;

  color: #f2f2f2;
  opacity: 0.9;

  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 8px;
}

.archive-item {
  display: flex;
  justify-content: space-between;
  padding:6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 13px;
}

.archive-item a {
  text-decoration: none;
  color: white;
}

.archive-item a:hover {
  text-decoration: underline;
}

.archive-item .date {
  color: white;
  opacity: 1.0;
  font-size: 11px;
}

#music-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34px;

  background: #000;
  color: #d8d8d8;

  display: flex;
  align-items: center;

  font-family: "Courier New", monospace;
  font-size: 12px;

  border-top: 1px solid #333;

  padding: 0 10px;
  box-sizing: border-box;
}

#music-btn {
  background: none;
  border: none;
  color: #d8d8d8;
  font-size: 14px;

  cursor: pointer;
  margin-right: 12px;
}

#music-btn:hover {
  color: white;
}

#track-info {
  display: flex;
  gap: 10px;
  opacity: 0.85;
}

#track-title::after {
  content: " —";
  margin-left: 6px;
  opacity: 0.5;
}

