body {
  background-image: url('bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0 1rem;
  min-height: 100vh;
  color: #d33;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  text-align: center;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

.block {
  display: inline-block;
  background: #550000;
  color: #fff;
  padding: 5px 15px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  border: 2px solid #220000;
  box-shadow: 2px 2px 0 #220000;
  margin-top: -10px;
}

.block::before,
.block::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #222;
  margin: 0 4px;
}

a {
  color: #ff4e4e;
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
}

a:hover,
a:focus {
  color: #fff;
  text-decoration: none;
  padding: 0 2px;
}

.links {
  color: #ff4040;
  text-decoration: none;
  text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  transition: color 0.25s, transform 0.25s;
}

.links:hover {
  color: #fff;
  transform: scale(1.05);
}

header {
  overflow: hidden;
  white-space: nowrap;
}

header h1 {
  font-weight: bold;
  text-shadow: 2px 2px 0 #550000;
  letter-spacing: 0.05em;
  border-top: 2px solid #220000;
  padding-bottom: 5px;
  text-align: center;
  text-transform: none;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

main h2 {
  font-weight: bold;
  text-shadow: 2px 2px 0 #550000;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #550000;
  padding-bottom: 5px;
}

nav {
  padding: 0;
  margin: 0.25rem 0 0.75rem 0;
  text-align: center;
}

.nav-item {
  display: inline-block;
  padding: 5px 10px;
}

main {
  padding: 1rem 0;
}

section {
  margin-bottom: 20px;
}

article {
  background: #550000;
  border: 1px solid #550000;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 700px;
  text-align: center;
}

article h3 {
  margin-top: 0;
  font-size: 1.1rem;
  text-shadow: 1px 1px 0 #220000;
}

article img, main img {
  display: block;
  margin: 2rem auto;
  width: 300px;
  max-width: 90%;
  height: auto;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #ff4e4e;
}

.footer-label {
  display: inline-block;
  background: #330000;
  color: #ccc;
  padding: 0 5px;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  border: 1px solid #220000;
  box-shadow: 1px 1px 0 #220000;
  opacity: 0.8;
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer-label::before,
.footer-label::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #111;
  border-radius: 50%;
  margin: 0 3px;
  opacity: 0.6;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
  }

  nav {
    padding: 8px 10px;
  }

  nav a {
    display: inline-block;
    margin: 4px 6px;
  }
}

@media (max-width: 400px) {
  nav a {
    display: block;
    margin: 6px 0;
  }
}

#eps,
#singles {
  text-align: center;
}

blockquote {
  margin: 0;
  padding: 0;
}

blockquote p {
  margin: 0;
}

nav a {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

nav a img {
  width: 64px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 0.25s ease, filter 0.25s ease;
}

nav a img:hover {
  transform: scale(1.2) rotate(-3deg);
  filter: brightness(1.1) contrast(1.3);
}

.imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
  margin: 0 10px;
}

.imgtxt img {
  width: 64px;
  height: auto;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.imgtxt span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 6px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  filter: drop-shadow(1px 1px 0 black)
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
  transition: opacity 0.25s ease;
}

.imgtxt:hover span,
.imgtxt:focus span {
  opacity: 1;
}

.imgtxt:hover img,
.imgtxt:focus img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.3);
}

.home,
.home:hover {
  text-transform: none;
  text-decoration: none;
  background: none;
  border: none;
}

.media {
  color: #f4f2f2;
}

#eps {
  padding-top: 0;
  margin-top: 0.5rem;
}

header h1,
header h1 a,
header h1 .home,
header h1 .headertxt,
header h1 .subheader {
  text-transform: none !important;
}

.media .no-fs {
  transition: none;
  transform: none;
  box-shadow: none;
  cursor: default;
}

article small {
  font-size: 0.75em !important;
  opacity: 0.8;
}

.media a {
  display: block;
  width: fit-content;
  margin: 2rem auto;
}