/*This is the default, to use when page in progress (or lazy)*/
.default {
    background-color: rgb(38, 38, 38);
    font-family: Verdana;
  }
  
  .float {
    font-size:2em;
    color: #000;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    }
    
    @keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, -0px); }
    }

.center-box {
    order: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
    width: auto;
    background-color: rgb(245, 242, 214);
    border-style:solid ;
    border-color: black;
    overflow: auto;
    margin: 20px;
    padding: 10px;
  }
  
  .left-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
    width: auto;
    border-style:solid ;
    overflow: auto;
    padding: 10px;
    margin: 20px;
  }

/*Pokemon section*/
  
.title {
  text-align: center;
  color: rgb(255, 255, 255);
}

.textbox {
  border-radius: 2px;
  padding: 8px;
  border: 1px solid white;
  box-shadow: 0 1px 0 1px black,
              inset 0 1px 0 1px black,
              0 0 0 1px black,
              inset 0 0 0 1px black;
width: fit-content;
}

  #pokeshrine-fav-box-container {
    background-image: url(/shrines/Images/Pokefav/Grass_Background.png);
    border-radius: 10px;
    width: 50%;
    padding: 10px;
  }
  
  .button {
    background-color: rgba(244, 156, 231, 0.529);
    font-size: 10px;
    border-radius: 1em;
    padding: 1em;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: baseline;
  }

  #pokeshrine-main-text-container { 
  width: 50%;
  background-image: url(/shrines/Images/Texture/Porygon2_pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  border-radius: 10px;
  }

  #poke-quizz-box {
    display: grid;
    gap: 5px;
    grid-template-columns: auto auto auto;
    border-radius: 10px;
  }

  #credit-box {
    background-color: #c841c3;
    height: fit-content;
    border-radius: 10px;
  }

body {
  background-color: #3e0040;
  background-image: url(/shrines/Images/Texture/Gastly_pattern.png);
}
  @font-face {
    font-family: "PokemonGB";
    src: url(/shrines/PokemonGb-Font.ttf); 
  }

  .pokefont {
    font-family: "PokemonGB";
  }
  

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 200px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

a:link {
  color: #000;
}

a:visited {
  color: #900037;
}


 /*Pokefav subsection*/
  #pokefavs-display {
    background-color: #E2FFCD;
    border-style: solid ;
    border-width: 2px;
    border-radius: 10px;
    width: 500px;
    padding: 10px;
    margin: 10px;
    display: grid;
    gap: 10px;
    grid-template-areas: 
    "toxicroak malamar SCOLIPEDE"
    "toxicroak-txt malamar-txt scolipede-txt";
    grid-template-columns: 4fr 5fr 6fr;
    justify-content: center;
  }
  
  #pokefavs-display > div {
    max-height: 300px;
  }
  
  #pokefavs-display > #toxicroak {
    grid-area: toxicroak;
    align-content: center;
  }
  
  #pokefavs-display > #toxicroak-txt {
    grid-area: toxicroak-txt;
    align-content: center;
  }
  
  #toxicroak-txt {
    border-style: solid ;
    color: #004000;
    padding: 5px ;
  overflow: auto;  
  border-radius: 10px;
  }
  
  #pokefavs-display > #malamar {
    grid-area: malamar;
    align-content: center;
  }
  
  #pokefavs-display > #malamar-txt {
    grid-area: malamar-txt;
    align-content: center;
    border-style: solid ;
    color: #004000;
    padding: 5px ;
  overflow: auto;  
  border-radius: 10px;
  }
  
  #pokefavs-display > #SCOLIPEDE {
    grid-area: SCOLIPEDE;
    align-content: center;
  }
  
  #pokefavs-display > #scolipede-txt {
    grid-area: scolipede-txt;
    align-content: center;
    border-style: solid ;
    color: #004000;
    padding: 5px ;
  overflow: auto;  
  border-radius: 10px;
  }
  
  
  .DISPLAY {
    border-style: hidden;
    border-radius: 5px;
    padding: 3px;
  }
  
  .DISPLAY:hover {
    background-color: #94C841;
    transition: 1s;
    transition-timing-function: ease;
  }
  
  a:link {
    color: black;
  }
  /*Pokefavs subsection end*/
