/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');


@font-face {
    font-family: 'Top Secret';
    src: url('fonts/TopSecret.woff2') format('woff2'),
         url('fonts/TopSecret.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Impact Label Reversed';
    src: url('fonts/Impact Label Reversed.woff2') format('woff2'),
         url('fonts/Impact Label Reversed.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

  body {
        font-family: Karla;
        font-size: 13.5px;
        line-height: 1.8;
        padding: 0;
        margin: 0;
        background-image: url(images/lined-blue.png);
        background-attachment: fixed;
        background-size: 450px;
        background-blend-mode: multiply;
        background-color: rgba(255, 245, 238, 0.5);
      }

  :root {
  --index: #E8ADAA;
  --about: #E67451;
  --thoughts: #829F82;
}
      
    a {
        font-weight: 500;
        color: inherit;
        text-decoration-style: wavy;
        text-decoration-color: black;
      }

    a:hover {
        text-underline-offset: 3px;
      }

    .title {
        font-family: Top Secret;
        color: #C24641;
      }
      
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #A45D4A; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #A45D4A; 
}

    #sidemenu {
        background-image: url(images/torn-paper.png);
        background-attachment: fixed;
        background-repeat: repeat-y;
        background-size: 280px;
        background-position: -120px top;
        position: fixed;
        top: 0;
        left: 0;
        width: 240px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        z-index: 101;
        overflow: hidden;
        transition-timing-function: ease-in-out;
        transition: 1s;
      }

      #sidemenu:hover {
        background-image: url(images/torn-w-plants.png);
        transition: 1s;
      }


      #sidemenu iframe {
        border: 0;
        flex-grow: 1;
        width: 240px;
        margin: -10px -20px 0px;
        padding-top: 10px;
        height: auto;
        overflow-y: hidden;
        overflow-x: hidden;
      }

      #sidemenu iframe:hover {
        overflow-y: auto;
        overflow-x: hidden; 
      }
