#desktopModal {
  display: none;
}

/* Responsiveness - Yeah I waited awhile to add this, chalk it up to laziness*/



/* Keyframes */

@keyframes glow {
  0% {
    text-shadow:
      0 0 2px currentColor,
      0 0 6px currentColor,
      0 0 12px rgba(255, 255, 255, 0.2);
  }

  50% {
    text-shadow:
      0 0 4px currentColor,
      0 0 10px currentColor,
      0 0 20px rgba(255, 255, 255, 0.3);
  }

  100% {
    text-shadow:
      0 0 2px currentColor,
      0 0 6px currentColor,
      0 0 12px rgba(255, 255, 255, 0.2);
  }
}

@keyframes fadeText {
  from {
    color: #333;
    /* Dark grey */
  }

  to {
    color: #ccc;
    /* Light grey */
  }
}

@keyframes fadeBorders {
  from {
    border-color: #8E48A8;
    /* Dark grey */
  }

  to {
    border-color: #ead6f0;
    /* Light grey */
  }
}

/* Text */

a:hover {
  cursor: url('assets/wii-grab.cur'), auto;
}

h1 {
  margin-bottom: 8px;
  text-decoration: underline;
}

a[id$="Glow"] {
  font-weight: normal;
  text-decoration: none;
  color: white;
  animation: glow 1s ease-in-out infinite;
}

#blueGlow {
  color: rgb(70, 70, 213);
}

#greenGlow {
  color: rgb(99, 213, 99);
}

#redGlow {
  color: rgb(204, 73, 73);
}

#pinkGlow {
  color: rgb(216, 100, 216);
}

a:link {
  color: #c0c0c0;
  text-decoration: none;
}

a:visited {
  color: #8E48A8;
}

a:hover {
  color: #8E48A8;
}

a img {
  border-width: 0;
}

.highlighted {
  animation: fadeText 2s ease-in-out infinite alternate;
}

#featured {
  color: #513079;
  text-decoration: underline;
}

.post h3 a,
.post h3 a:visited {
  text-decoration: none;
  color: #8E48A8;
}

a.title-link:hover {
  background-color: #3C2F4C;
  color: #ffffff;
}

/* General */

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  background-image: url('assets/background.png');
  text-align: center;
  line-height: 1.5em;
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
  color: #969696;
  font-size: 1em;
  cursor: url('assets/wii-pointer.cur'), auto;
}

#outer-wrapper {
  width: 995px;
  margin: 0 auto;
  text-align: left;
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow: hidden;
}

#header-wrapper {
  margin: 0;
  padding: 0;
  color: #3C2F4C;
}

#header {
  text-align: center;
  background-image: url('assets/header.png');
  padding: 0 0 28px;
  margin: 10px 0 0 0;
  height: 100%;
  background-position: center;
  border: 12px solid transparent;
  border-image: url('assets/animatedstarline.gif') 17 round;
  border-image-outset: 12px;
  box-shadow:
    0 0 5px rgb(142, 72, 168),
    0 0 15px rgb(142, 72, 168),
    0 0 25px rgb(142, 72, 168),
    inset 0 0 5px rgb(142, 72, 168),
    inset 0 0 15px rgb(142, 72, 168);
}

#main-wrap1 {
  width: 485px;
  float: left;
  margin-top: 20px;
  margin-left: 4px;
  padding: 0 0 -5px;
  color: #969696;
  font-size: 97%;
  position: relative;
  line-height: 1.5em;
  word-wrap: break-word;
  overflow: hidden;
  border: 12px solid transparent;
  border-width: 20px 0 20px 0;
  border-image: url('assets/bordermusic1.gif') 32 round;
  border-image-outset: 2spx;
}

ol {
  margin-left: -10px;
}

#main-wrap2 {
  float: left;
  width: 100%;
  padding: 10px 0 0;
}

#main {
  padding: 0;
}

.main .widget {
  margin-top: 4px;
  margin-left: 1px;
  width: 455px;
  padding: 5px 5px;
}

.main .Blog {
  margin: 0 0 0 10px;
  padding: 0;
  width: 469px;
}

h2.date-header {
  margin: 0 12px 0 20px;
  text-align: left;
  font-size: 85%;
  line-height: 2em;
  text-transform: lowercase;
  letter-spacing: .2em;
  color: #3C2F4C;
}

.post {
  margin: .3em 0 25px;
  padding: 0 13px;
  border: 1px dotted #8E48A8;
  border-width: 1px 0;
  animation: fadeBorders 2s ease-in-out infinite alternate;
}

.post h3 {
  margin: 0;
  line-height: 1.5em;
  display: block;
  border: 1px dotted #8E48A8;
  border-width: 0 1px 1px;
  padding: 2px 14px 2px 29px;
  color: #8E48A8;
  font-family: "VT323", monospace;
  size: large;
  animation: fadeBorders 2s ease-in-out infinite alternate;
}

.wav {
  filter: hue-rotate(210deg);
}

.post-body {
  border: 1px dotted #8E48A8;
  border-width: 0 1px 1px;
  border-bottom-color: #000000;
  padding: 10px 4px 1px;
  animation: fadeBorders 2s ease-in-out infinite alternate;
}

html>body .post-body {
  border-bottom-width: 0;
}

.post p {
  margin: 0;
}

.post-footer {
  background: #000;
  margin: 0;
  padding: 2px 14px 2px 29px;
  border: 1px dotted #8E48A8;
  font-size: 100%;
  line-height: 1.5em;
  color: #3C2F4C;
}

.post-footer p {
  margin: 0;
}

html>body .post-footer {
  border-bottom-color: transparent;
}

.uncustomized-post-template .post-footer {
  text-align: right;
}

.uncustomized-post-template .post-author {
  float: left;
  text-align: left;
  margin-right: 0;
}

.post-footer a {
  color: #c0c0c0;
}

.post-footer a:hover {
  color: #3C2F4C;
}

.post img {
  margin: 0 0 5px;
  padding: 4px;
  border: 1px solid #8E48A8;
}

blockquote {
  margin: .75em 0;
  border: 1px dotted #8E48A8;
  border-width: 1px 0;
  padding: 5px 15px;
  color: #8E48A8;
  animation: fadeBorders 2s ease-in-out infinite alternate;
}

.post blockquote p {
  margin: .5em 0;
}

/* Sidebar */

#sidebar-leftwrap,
#sidebarright {
  width: 240px;
  float: left;
  margin-top: 10px;
  font-size: 97%;
  line-height: 1.5em;
  word-wrap: break-word;
  overflow: hidden;
}

#sidebarright {
  margin-left: 0;
}

#right {
  background: #000;
  margin: 0 0 5px;
  padding: 10px 0 0;
  color: #ffffff;
}

.sidebar .widget {
  margin: .5em 13px 1.25em;
  padding: 0;
}

.widget-content {
  margin-top: .5em;
}

.sidebar h2 {
  text-align: center;
  margin: 0;
  height: 25px;
  padding: 3px 0 .2em 0;
  line-height: 1.5em;
  font-family: "VT323", monospace;
  color: #8E48A8;
  font-size: large;
}

.sidebar ul {
  list-style: none;
  margin: 0 0 1.25em;
  padding: 0;
}

.sidebar ul li {
  margin: 0;
  padding: 0 0 3px 16px;
  margin-bottom: 3px;
  border-bottom: 1px dotted #8E48A8;
  line-height: 1.2em;
}

.sidebar p {
  margin: 0 0 .6em;
}

.sidebar .clear,
.main .widget .clear {
  clear: both;
}

/* Footer */

#footer-wrap1 {
  clear: both;
  margin: 0;
  padding: 15px 0 0;
}

#footer-wrap2 {
  padding: 8px 0 0;
  color: #8E48A8;
}

#footer {
  padding: 0 15px;
}

.footer-text {
  padding: 5px;
  color: #c0c0c0;
  font-size: 80%;
}

.footer-text a {
  color: #8E48A8;
}

#footer hr {
  display: none;
}

#footer p {
  margin: 5px;
}

#footer a {
  color: #c0c0c0;
}

#bottom {
  color: #c0c0c0;
  font-size: 11px;
  text-align: center;
  height: 54px;
}

#bottom a {
  text-decoration: none;
  color: #8E48A8;
}

@media only screen and (max-width: 744px) {
  #sidebar-leftwrap {
    opacity: 0;
    display: none;
  }
  #main-wrap1 {
    opacity: 0;
    display: none;
  }
  #sidebarright {
    width: 100%;
    float: none;
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }
  #desktopModal {
    display: block;
  }
}