/* CSS Homepage Ortie_pnk  */

/* colors */
:root {         --color1: #0c0a00;
  --color2: #00000060;
  --encart1: #efe9ce;
  --encart2: #ec0606;
  --bg: #606060;
}

body, div, main, section, article {
  box-sizing: border-box;
}

/* universal background  */
body {
  height:100%;
  margin:0;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: var(--bg);
    color: var(--color2);
    background-image: url("https://bigbrat.world/cheetah.gif");
  }
}
  /* header image */
  header img {
    width: 100%;
  }

  /* clearfix hack to prevent image overflow. check out the W3Schools page on it. */
  .clearfix::after {
    content: "";
    clear: both;
    display: table; a
  }

  /*FONTS*/
  @font-face {
    font-family: "nom";
    src: url(".ttf");
    font-weight:bold;
  }


  /* body font */
  .subPage p, a, footer, #authorNotes, .archiveTable {
    font-family: Courier New, Calibri, Helvetica, sans-serif;
    font-size: large;
    text-align:center;
  }

  /* header font */
  #showComic, header, h1, h2, h3, h4, h5, p, a, ul {
  font-family:  Courier New;
  }

  /* STYLING FOR SUBPAGES (about, characters, etc) */

  /*general*/
  .subPage {
    max-width: 1200px;
    max-width: 98%;
    margin-left: 20%;
    margin-bottom: 10px;
    padding: 0px;
  }


  .titre{
    background-color: #101010;
  }
  .titre p {
    background: linear-gradient(90deg, #ad7b21, #f7ce6b, #ad7b21) -100%/ 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font: 900 clamp(1em, 3vw, 3em) exo, sans-serif;
    animation: shimmer 2s linear infinite
  }

  @keyframes shimmer { to { background-position: 100% } }

  /* avoid problems in high contrast mode */
  @media (forced-colors: active) {
    p {
      background: #ad7b21;
      color: black;
    }
  }

  h2, h3 {
    text-transform: uppercase;
  }

  h4 {
    margin-top: 0px;
  }

  /*flex index*/
  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:baseline;
    margin:6px;
    gap: 4px;

  }

  .link-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #ad7b21;
    background-color: #101010;
    border: 3px solid #ad7b21;
    border-radius:10px;
    margin: 10px;
  }

  /*link style*/
  .link {
    background-color: #f7ce6b;
    border: none;
    color: black;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid #101010;
    border-radius:10px;
    margin:7px
  }

  .link:hover {
    text-decoration: underline dotted;
    border: 2px solid #ad7b21;
    position:relative;
    top:-2px;
    left:-2px;
  }

  .link:active {
    border: 2px solid #ad7b21;
    background-color: #ad7b21;
    text-decoration: none;
    border-bottom: none;
    position:relative;
    top:-2px;
    left:-2px;
  }



  /* HEADER */
  header #nav {
    margin: auto;
    padding: 0px 6px 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }

  /*NAVBAR*/
  #navbar {

  }

  /* FOOTER */
  #footer {
  margin-bottom: 10px;
  padding: 0px 12px 12px;
  align-items: center;
  font-family: "Arial", sans-serif;
  font-size:10px;
  color:#291727;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  }

  footer {
    color: #421a1a;
    margin-top: 12px;
    margin-bottom: 12px;
    float: left;
    width: 100%;
    font-size: 12px;
  }

  /* take away margins from the edges of the screen */
  html, body {
    margin: 0;
  }

