@font-face {
    font-family: 'Serial Killer 2021';
    src: url('../fonts/Serial Killer 2021.otf') format('opentype');
  }
  
  body {
    font-family: 'Serial Killer 2021', sans-serif;
    margin: 0;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  
  header {
    background-color: black;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid red;
    box-shadow: 0 0 10px white;
  }
  
  header h1 {
    color: white;
    font-size: 2em;
    text-shadow: 0 0 6px white, 0 0 12px white;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  header h1:hover {
    color: black;
    animation: fireGlow 0.8s infinite alternate;
  }
  
  @keyframes fireGlow {
    0% {
      text-shadow: 0 0 10px red, 0 0 20px orange, 0 0 30px yellow;
    }
    100% {
      text-shadow: 0 0 20px orange, 0 0 30px red, 0 0 40px yellow;
    }
  }
  
  nav {
    background-color: black;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
  }
  
  nav a {
    padding: 5px 15px;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
  }
  
  nav a:hover {
    color: black;
    background-color: white;
    border: 2px solid red;
    box-shadow: 0 0 10px red, 0 0 20px orange, 0 0 30px yellow;
  }
  
  #content {
    display: flex;
    flex: 1;
  }
  
  main {
    width: 70%;
    padding: 20px;
  }
  
  aside {
    width: 30%;
    padding: 20px;
    background-color: black;
  }
  
  h1:not(header h1) {
    color: white;
    text-shadow: 0 0 6px white, 0 0 12px white;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    box-shadow: 0 0 10px white;
  }
  
  footer {
    background-color: black;
    text-align: center;
    padding: 10px;
    font-size: 85%;
    border-top: 2px solid white;
    box-shadow: 0 0 10px white;
    color: #ccc;
  }
  
  #menu-button {
    display: none;
  }
  
  @media all and (max-width: 800px) {
    header {
      height: 44px;
    }
  
    #content {
      display: block;
    }
  
    main, aside {
      width: 100%;
    }
  
    #menu-button {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      height: 44px;
      text-align: center;
      line-height: 44px;
      color: white;
      padding: 0 15px;
      background-color: black;
      border: 2px solid red;
      border-radius: 6px;
      font-size: 1.5em;
      box-shadow: 0 0 10px red;
      cursor: pointer;
    }
  
    nav {
      display: none;
      height: auto;
    }
  
    nav.open {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    nav li {
      display: block;
    }
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .gallery figure {
    margin: 0;
    text-align: center;
  }
  
  .gallery img {
    width: 100%;
    border: 2px solid white;
    box-shadow: 0 0 10px red, 0 0 20px orange;
    transition: transform 0.3s;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  .gallery figcaption {
    margin-top: 10px;
    color: white;
    text-shadow: 0 0 5px white;
  }