/* 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: darkgreen;
  color: white;
  font-family: 'Comic Sans MS';
  background-image: url('pokeballs2.gif');
  font-weight: normal;
}

.center {
  font-weight: bold;
  text-align: center
}

.center_img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes glow {
  from {color: cyan;}
  to {color: yellow;}
}


@keyframes guideanim {
  0% {color: white;}
  90% {color: white;}
  100% {color: #3f6;}
}


@keyframes guideanim_y {
  0% {color: yellow;}
  90% {color: yellow;}
  100% {color: #3f6;}
}

@keyframes guideanim_inv {
  0% {color: #0000;}
  90% {color: #0000;}
  100% {color: #3f6;}
}

guide {
  color: #3f6;
  font-family: 'Comic Sans MS';
  animation-name: guideanim;
  animation-duration: 66666ms;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}

guide2 {
  color: #3f6;
  font-family: 'Comic Sans MS';
  animation-name: guideanim;
  animation-duration: 15000ms;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}

guide2_y {
  color: #3f6;
  font-family: 'Comic Sans MS';
  animation-name: guideanim_y;
  animation-duration: 15000ms;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}


guide2_inv {
  color: #3f6;
  font-family: 'Comic Sans MS';
  animation-name: guideanim_inv;
  animation-duration: 15000ms;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}

h1 {
  color: yellow;
  font-family: 'Comic Sans MS';
  animation-name: glow;
  animation-duration: 500ms;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: steps(2,start);
}

div {
  max-width: 700px;
  border: 3px solid black;
  background: darkgreen;
  padding: 0px;
  padding-left: 3px;
  margin: auto;
  text-align: center;
  background-image: url('ocean.gif');
}

hr
{
  border: 1px solid black;
}

.webring
{
  color: white;
  max-width: 728px;
  border: 3px solid black;
  background: darkgreen;
  padding: 4px;
  margin: auto;
  text-align: center;
  background-image: url('bg_water.gif');
}

.pages
{
  color: white;
  max-width: 301px;
  border: 3px solid black;
  background: darkgreen;
  padding: 1px;
  padding-bottom: 7px;
  margin: auto;
  text-align: center;
  background-image: url('bg_water.gif');
}

.badge
{
  color: white;
  max-width: 301px;
  border: 3px solid black;
  background: darkgreen;
  padding: 1px;
  padding-bottom: 6px;
  margin: auto;
  text-align: center;
  background-image: url('bg_water.gif');
}


.imgleft
{
  position: relative;
  left:140px;
  bottom:20px;
}

.imgright
{
  position: relative;
  right:140px;
  bottom:20px;
}

.imgteam
{
  position: relative;
  left:60px;
  bottom:20px;
}

.imgabby
{
  position: relative;
  left:60px;
  bottom:200px;
}

.imgnews
{
  position: relative;
  left:250px;
}

.h2left
{
    position: relative;
    left:20px;
}

a:link {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: cyan;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

/*
Source - https://stackoverflow.com/a/70820783
Posted by Ahmad Moghazi, modified by community. See post 'Timeline' for change history
Retrieved 2026-08-02, License - CC BY-SA 4.0
*/

.spoiler{
  background-color: black;
  color: transparent;
  user-select: none;
}

.spoiler:hover{
  background-color: inherit;
  color: inherit;
}

.blackout-spoiler {
  position: relative;
  display: inline-block;
}

.blackout-spoiler img {
  display: block;
}

.spoiler-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.blackout-spoiler:hover .spoiler-cover {
  opacity: 0;
  pointer-events: none;
}
  


  
  
  
  

