/* 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." */

body {
        background-color: #945C4C;
        color: #FFDEC9;
        font-family: Georgia, serif;
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        padding: 0;
      }

      /* Styling for the topbar */
      .topbar {
        height: 66px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        background-color: #B37D65;
        box-shadow: 0px -1px 20px #55342B;
      }

      .topbar img {
        height: 66px;
        margin-right: 20px;
      }
      
      /* Centered image (neocities watermark) */
      .center img {
        display: block;
        margin: auto;
        }

      /* Styling for content section */
      #content {
        margin-top: 0px;
        padding: 20px;
        text-align: center;
      }

      #content a {
        color: #FFDEC9;
        text-decoration: none;
        font-size: 20px;
        position: relative;
        display: inline-block;
        margin: 0px 20px;
      }

      #content a:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(50% + 45px);  /* updated */
        width: 1px;
        height: 80%;
        background-color: #000;
        transform: translateY(-50%);
      }

      #content a:first-child {
        margin-left: 0;
      }

      #content a:last-child {
        margin-right: 0;
      }
      
      #hello {
        padding-left: 750px;
        padding-top: 50px;
      }