  :root {
    --content: #ffffff;
            }

  @font-face {
    font-family: Roboto;
    src: url('https://dungeoncrab.neocities.org/fonts/Roboto-VariableFont_wdth,wght.ttf');
  }

  @font-face {
    font-family: ShareTech;
    src: url('https://dungeoncrab.neocities.org/fonts/ShareTechMono-Regular.ttf');
  }


  body {
    font-family: 'Roboto';
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.05) 1px,
      transparent 1px,
      transparent 8px
      );
    margin: 0;
    background-color: #050505;
    background-size: 100% 500%;    
    animation: scanMove 1s linear infinite;
    color: #f5ffe8;
    z-index:1;
  }

@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 25px; } /* move down by line spacing */
}

@keyframes gradientDown {
  0% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

  @keyframes gradientShift {
    0% {background-position:0% 50%;}
    50% {background-position:100% 50%;}
    100% {background-position:0% 50%;}
    }
    
  * {
    box-sizing: border-box;
  }

  #container {
    max-width: 900px;
    margin: 0 auto;
    }

  #container a {
    color: #b51200;
    font-weight: bold;
  }

  #header {
    max-width: 100%;
    background-image: url('https://dungeoncrab.neocities.org/arts/header.JPG');
    background-repeat: no-repeat;
    background-size: 90% auto;
    background-position: center;
    background-color: #050505;
    }

            /* navigation section!! */
  #navbar {
    height: 40px;
    background-color: #050505;
    width: 100%;
  }

  #navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
  }

  #navbar li {
    padding-top: 10px;
  }

  #navbar li a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
  }

  #navbar li a:hover {
    color: #b51200;
    text-decoration: underline;
  }

  #flex {
    display: flex !important;
    flex-direction: row;   
    align-items: flex-start;
  }
  
  #new-phrase-btn {
    display: block;
    margin: 10px auto;
    padding: 6px 12px;
    font-family: monospace;
    background: rgba(0,0,0,0.6);
    border: 1px solid #b51200;
    color: #f5ffe8;
    border-radius: 4px;
    cursor: pointer;
  }

  #new-phrase-btn:hover {
    background: rgba(0,0,0,0);
  }
  aside {
    background-color: #050505;
    width: 200px;
    padding: 20px;
    font-size: smaller;
    }

  main {
    background-color: #050505;
    flex: 1;
    padding: 20px;
    order: 2;
    }


    * #leftSidebar {
      order: 1;
    }

    #rightSidebar {
      order: 3;
      margin-left: 3px;
    }
    
    .sidebarSummary {
      font-family: 'ShareTech';
      color: #b51200;
      font-size: 16px;
    }

    footer {
      background-color: #050505;
      width: 100%;
      height: 40px;
      padding: 10px;
      text-align: center;
    }

    h1,
    h2,
    h3 {
      font-family: 'ShareTech';
      color: #b51200;
    }

    h1 {
      font-size: 25px;
    }

    strong {
      color: #b51200;
    }

    .box {
      background-color: #050505;
      border: 1px solid #b51200;
      padding: 10px;
    }

    #topBar {
      width: 100%;
      height: 30px;
      padding: 10px;
      font-size: smaller;
      background-color: #050505;
    }

  .post {
    padding: 15px;
    margin-bottom: 20px;           
    border-radius: 6px;            
  }

  .title-art {
    display: flex;
    justify-content: center;  
    align-items:center;
    font-family: "ShareTech";
    color: #ffffff;
    text-align: center; 
    font-size: 11px;
    line-height: 12px;
  }

  @keyframes glow-flicker {
    0%, 100% { filter: drop-shadow(0 0 6px #050505); }
    50% { filter: drop-shadow(0 0 10px #ffffff); }
  }

  @keyframes tv-flicker {
    0%, 100% { opacity: 1; }
    25% { opacity: 0.95; }
    50% { opacity: 0.9;  }
    75% { opacity: 0.97; }
  }
  
  .image-sizing {
    width: 90%;
    max-width: 500px;
    height: auto;
    display: block;
  }
  .center_badge {
    display: block;
    justify-content: center;
    margin: 0 auto;
    max-width: 83px;
    max-height: 31px;
    }
  
  .center_image {
    display: block;
    justify-content: center;
    height: auto;
    margin: 0 auto;
    max-width: 500px;
    width: 90%
  }

    @media only screen and (max-width: 800px) {
      #flex {
        flex-wrap: wrap;
      }

      aside {
        width: 100%;
      }

      main {
        order: 1;
      }

      #leftSidebar {
        order: 2;
      }

      #rightSidebar {
        order: 3;
      }

      #navbar ul {
        flex-wrap: wrap;
      }
    }
