body {
    background: #f1f1f1;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #000000;
    max-width: 50em;
    margin: 0 auto;
    line-height: 1.50;
}

.decorative-noise {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("https://whenwe.love/index/noise.gif");
  background-size: 1%;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.cursor-glow {
      position: fixed;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(143, 255, 0, 0.15) 0%, rgba(193, 255, 114, 0) 70%);
      pointer-events: none;
      z-index: -1;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes glowPulse {
      0% {
        opacity: 0.7;
        text-shadow: 0 0 10px rgba(143, 255, 0, 0.3);
      }
      50% {
        opacity: 1;
        text-shadow: 0 0 25px rgba(143, 255, 0, 0.6), 0 0 50px rgba(193, 255, 114, 0.4);
      }
      100% {
        opacity: 0.7;
        text-shadow: 0 0 10px rgba(143, 255, 0, 0.3);
      }
    }


::selection {
    background: #c1ff72;
    color: #000000;
}


a {
font-size: 16px;
text-decoration-style: dotted;
text-decoration-thickness: 2px;
text-decoration-color: #c1ff72;
color: #000000;
text-transform: uppercase;
letter-spacing: -1px;
transition: 0.5s ease;
}

a:hover {
color: #c1ff72;
}


/*
This only styles the main title at the top of the page
which by default is just the word 'thoughts'
 */
h1 {
    font-family: "Times New Roman", serif;
    letter-spacing: -1px;
    font-style: italic;
    font-size: 20px;
    text-shadow: 0 0 15px #8fff00;
    font-weight: normal;
    /* animation: glow 3s linear infinite; */
    /* -webkit-animation: glow 3s linear infinite; */
}

strong {
    color: #111;
}
@keyframes glow {
    0% { text-shadow: 0 0 15px #8fff00; }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 15px #8fff00; }
}
    
@-webkit-keyframes glow {
    0% { text-shadow: 0 0 15px #8fff00; }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 15px #8fff00; }
}


/*
This styles code blocks
By default, highlight.js is effecting this styling too
 */
pre {
    overflow-x: auto;
    word-wrap: normal;
    border: none;
    border-radius: 3px;
}

/*
This styles inline <code>
 */
code:not(.block) {
    font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
    font-size: .8em;
    padding: .1em;
    border: 1px solid lightgray;
    border-radius: 3px;
}

/*
This also styles code blocks
Each code block <pre><code class="block">looks like this</code></pre>
By default, highlight.js is effecting this styling too
 */
code {
    font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
    font-size: .8em;
}

/*
This styles the div that the date/link for each post is in
The <a> tag itself is also a member of class "though-date"
so you can style that too if that's helpful
 */
.thought-date {
    font-size: calc(8px + 0.8vw);
    font-weight: bold;
    color: #000000;
    font-family: "Lekton", monospace;
    text-transform: uppercase;
    margin-bottom: 0.9vw;
    text-align: center;
    letter-spacing: 1px;
}

/*
This is the outermost block element for a given
thought post. You can style it if you like, but this
is probably only useful for spacing your posts from each other
in the way you'd like
 */
section.thought {
    margin: 3em;
}

/*
This styles the element that contains the actual
text of an individual post.
 */
div.thought {
    text-align: center;
    background: #ffffff;
    padding: 0.3vw 2vw;
    border: solid black 2px;
    border-radius: 10em;
    font-size: calc(10px + 1.1vw);
}

/* Responsiveness */
@media screen and (max-width: 600px) {

div.thought {
    font-size: 20px;
}

section.thought {
    margin: 1.5em 3em;
}

.thought-date {
    font-size: 15px;

}
}
