/* 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: white;
  color: black;
  font-family: Monospace;

  margin: 0;
  height: 100vh;
  cursor: url('./GoofyWhiteSelect.gif'), auto;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 33px;
}

p {
  font-size: 25px;
}

ul li {
  font-size: 25px;
}

.entry-list {
  list-style-type: none !important;
}

.links:hover {
  color: black;
  text-decoration: underline black !important;
  cursor: url('GoofyWhiteLinkSelect.gif'), auto;
}

.links {
  color: black;
  text-decoration: none;
}




.rainbow {
  
  font-family: monospace;
  animation: colorRotate 2s linear 0s infinite;
  text-decoration: none;
}
.rainbow:hover {
  color: black;
  text-decoration: none !important;
  cursor: url('GoofyWhiteLinkSelect.gif'), auto;
}

@keyframes colorRotate {
  from {
    color: #0000;
  }
  50% {
    color: #000000;
  }
  100% {
    color: #0000;
  }
}

.instagramarchive{
  color: black;
  text-decoration: none;
  font-size: 50px;
}

.instagramarchive:hover{
  color: black;
  text-decoration: none;
  font-size: 50px;
  text-decoration: underline black !important;
  cursor: url('GoofyWhiteLinkSelect.gif'), auto;
}

.prevnext{
  color: black;
  text-decoration: none;
  font-size: 40px;
}

.prevnext:hover{
  color: black;
  text-decoration: none !important;
  cursor: url('GoofyWhiteLinkSelect.gif'), auto;
}

.spoiler{
  background-color: rgb(62, 62, 62);
  color: transparent;
  user-select: none;
}

.spoiler:hover{
  background-color: inherit;
  color: inherit;
  cursor: url('GoofyWhiteLinkSelect.gif'), auto;
}

.alligncenter{
  text-align: center;
}