
    @import url('https://fonts.googleapis.com/css2?family=Jacquarda+Bastarda+9&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');

    :root {
      --background: #D0CEBA;
      --text: #417B5A;
      --primary: #4B3F72;
      
      --darkgreen-background: #1F2041;
      --darkgreen-text: #4B3F72;
    }

    h1 {
      font-family: "Jacquarda Bastarda 9", serif;
      font-weight: 400;
      font-style: normal;
    }

    body {
      font-family: "Azeret Mono", serif;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
    }

    .articleFlex {
      display: flex;
      justify-content: center;
    }

    .articleImg {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
      max-height: 300px;
      max-width: 90%;
      cursor: pointer;
    }

    .article {
      width: inherit;
      height: auto;
      margin-left: auto;
      margin-right: auto;
      text-align: justify;
      text-justify: inter-word;
      padding-top: 10px;
    }

    .article > h1,
    .article > h5 {
      text-align: center;
    }

    

    .grid-container {
      max-width: 100%;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-evenly;
    }

    .grid-container > a {
      text-decoration: none;
    }

    .grid-container > a > div > img {
      width: 200px;
    }

   

    h1,
    h2,
    h3,
    nav a,
    nav p {
      font-weight: normal;
      text-transform: uppercase;
    }

    nav .title {
      font-weight: normal;
      text-transform: uppercase;
    }

    body {
      background-color: var(--background);
      color: var(--text);
      width: 100vw;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0;
    }

    header {
      top: 0;
      background-color: var(--background);
    }

   

    .homenavcontainer {
      display: flex;
      justify-content: space-between;
      flex-direction: row;
    }

    .homenavcontainer > img {
      padding-top: 1rem;
      padding-right: 1rem;
      height: 100px;
    }

    .linkscontainer > li {
      margin-bottom: 1rem;
    }

    .linkscontainer > li > a > img {
      max-height: 100px;
      max-width: 100px;
      margin-right: 1rem;
    }

    .vidimage-wrapper {
      position: relative;
    }

    .homenavcontainer > .vidimage-wrapper > img {
      padding-top: 1rem;
      padding-right: 1rem;
      height: 100px;
    }

    .aboutcontainer,
    .vidaboutcontainer {
      display: flex;
      justify-content: space-between;
    }

    .aboutcontainer > img,
    .vidaboutcontainer > .vidimage-wrapper > img {
      width: 200px;
      height: 200px;
      padding-left: 0.5rem;
    }

    header,
    main,
    footer {
      padding: 1rem;
    }

    footer {
      margin-bottom: 10px;
    }

    main,
    nav {
      overflow-y: auto;
    }

    p,
    a {
      line-height: 120%;
    }

    a,
    a:visited {
      color: var(--primary);
    }

    hr {
      color: var(--background);
      border: none;
      border-bottom: 1px solid var(--text);
    }

    .vidhr {
      animation-name: myhrtrans;
      animation-delay: 1s;
      animation-duration: 3s;
      animation-fill-mode: forwards;
    }

    @keyframes myhrtrans {
      from {
        border-bottom: 1px solid var(--text);
      }
      to {
        border-bottom: 1px solid var(--darkgreen-text);
      }
    }

    ul {
      list-style: none;
      padding-left: 16px;
    }

    .hidden {
      display: none;
    }

    .navsection {
      display: inline-block;
    }

    .navsection p,
    .navsection a {
      font-size: 16px;
    }

    @media (max-width: 382px) {
      .navsection p,
      .navsection a {
        font-size: 14px;
      }
    }

    header h1 {
      margin: 0 0 1rem;
    }

    nav .title,
    nav a,
    nav p {
      display: inline;
    }

    nav a {
      text-decoration: none;
    }

    nav p {
      text-decoration: none;
      color: var(--text);
    }

    nav a,
    nav a:visited {
      color: var(--primary);
    }

    nav a:hover {
      color: var(--text);
      text-decoration: underline;
    }

    nav a:active,
    nav a.active {
      text-decoration: none;
      color: var(--primary);
    }

    a.headerlink {
      color: var(--text);
      text-decoration: none;
    }

    .vidheaderlink {
      animation-name: mytexttrans;
      animation-delay: 1s;
      animation-duration: 3s;
      animation-fill-mode: forwards;
    }

    @keyframes mytexttrans {
      from {
        color: var(--text);
      }
      to {
        color: var(--darkgreen-text);
      }
    }

    .start-image {
      width: 100%;
      max-width: unset;
      border: 1px solid var(--text);
    }

    .grid-2,
    .grid-4 {
      display: grid;
      grid-gap: 1rem;
    }

    .grid-4 {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-2 {
      grid-template-columns: 1fr 1fr;
    }

    @media screen and (max-width: 800px) {
      header,
      main,
      footer {
        padding: 0.5rem;
      }
      .grid-2,
      .grid-4 {
        grid-template-columns: 1fr;
      }
      .hide-on-small {
        display: none;
      }
      .show-on-small {
        display: none;
      }
      .grid-container {
        justify-content: center;
      }

      .image-wrapper {
        position: relative;
      }

      .image-hover {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1;
        animation: 2s myfade infinite alternate;
      }

      @keyframes myfade {
        from {
          opacity: 1;
        }
        to {
          opacity: 0;
        }
      }
    }

    @media screen and (max-width: 768px) {
      #currentlyReading {
        display: none;
      }
    }

    @media screen and (min-width: 600px) {
      .overview {
        grid-template-columns: repeat(8, 1fr);
        row-gap: 5px;
        column-gap: 10px;
      }
    }

    /* Guestbook specific styles */
    .entry-form {
      background-color: rgba(75, 63, 114, 0.05);
      padding: 15px;
      border: 1px solid var(--primary);
      margin-bottom: 30px;
    }
    
    .form-group {
      margin-bottom: 15px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 400;
    }
    
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid var(--primary);
      background-color: rgba(208, 206, 186, 0.5);
      font-family: "Azeret Mono", monospace;
      color: var(--text);
      box-sizing: border-box;
    }
    
    button {
      background-color: var(--primary);
      color: var(--background);
      border: none;
      padding: 8px 16px;
      cursor: pointer;
      font-weight: 500;
      font-family: "Azeret Mono", monospace;
      text-transform: uppercase;
    }
    
    button:hover {
      background-color: var(--text);
    }
    
    .entries {
      margin-top: 2em;
    }
    
    .entry {
      background-color: rgba(255, 255, 255, 0.5);
      padding: 15px;
      margin-bottom: 15px;
      border-left: 3px solid var(--primary);
    }
    
    .entry-header {
      border-bottom: 1px solid rgba(65, 123, 90, 0.3);
      padding-bottom: 8px;
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
    }
    
    .entry-name {
      font-weight: 500;
      color: var(--primary);
    }
    
    .entry-date {
      font-size: 0.9em;
      color: var(--text);
    }
    
    .entry-message {
      margin-bottom: 10px;
      line-height: 1.4;
    }
    
    .entry-footer {
      font-size: 0.8em;
      color: var(--text);
      opacity: 0.8;
    }
    
    #status-message {
      padding: 10px;
      margin-bottom: 15px;
      border-radius: 0;
    }
    
    #status-message.success {
      background-color: rgba(65, 123, 90, 0.2);
      border-left: 3px solid var(--text);
    }
    
    #status-message.error {
      background-color: rgba(75, 63, 114, 0.2);
      border-left: 3px solid var(--primary);
    }
    
    .loading {
      color: var(--primary);
      padding: 15px 0;
    }
  