body {
    background-color: rgb(29, 29, 29);
    margin: 2vh;
}

p, h1, h2, label, legend, button {
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
button {
    background-color: transparent;
    border-width: 3px;
    border-color: white;
    padding: 7px 10px;
    outline: none;
    margin: 10px;
    cursor: pointer;
    box-shadow: none;
    border-radius: 5px;
}

button:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

button:not(:hover) {
    transform: scale(1);
    transition: all 0.3s;
}

.center {
    justify-content: center;
    align-content: center;
    align-self: center;
    align-items: center;
    text-align: center;
    display: block;
    margin: auto;
}

.boxrow {
    display: flex;
    max-width: 100wh;
}

.box {
    background-size: contain;
}

.warning {
    background-color: rgb(177, 173, 34);
    border-radius: 5px;
    border-color: rgb(132, 128, 23);
    border-width: 5px;
    padding: 25px;
}

@keyframes standUp-Unclaimed { /* im the real slim shady */
    0%   {opacity: 0.3; color: black; transform: scale(1);}
    100% {opacity: 0.5; color: black; transform: scale(1.15);}
}

@keyframes sitDown-Unclaimed { /* im the real slim shady */
    0% {opacity: 0.5; color: black; transform: scale(1.15);}
    100%   {opacity: 0.3; color: black; transform: scale(1);}
}

.pokemon-unclaimed {
    color: black;
    opacity: 0.3;
    filter: brightness(50%)
}

.pokemon-unclaimed:hover {
    animation-name: standUp-Unclaimed;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards;
    transform: scale(1);
    transition: all 1s;
}

.pokemon-unclaimed:not(:hover) {
    animation-name: sitDown-Unclaimed;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards;
    transform: scale(1);
    transition: all 1s;
}

@keyframes standUp-Claimed{ /* im the real slim shady */
    0%      {transform: scale(1);}
    100%    {transform: scale(1.15);}
}

@keyframes sitDown-Claimed { /* im the real slim shady */
    0%      {transform: scale(1.15);}
    100%    {transform: scale(1);}
}

.pokemon-claimed {
    color: white;
    opacity: 1;
    filter: brightness(100%)
}

.pokemon-claimed:hover {
    animation-name: standUp-Claimed;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards;
    transform: scale(1);
    transition: all 1s;
}

.pokemon-claimed:not(:hover) {
    animation-name: sitDown-Claimed;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards;
    transform: scale(1);
    transition: all 1s;
}

@keyframes indicator-placed { /* im the real slim shady */
    0%      {transform: scale(1.15); opacity: 0.3;}
    100%    {transform: scale(1); opacity: 1;}
}

.indicator {
    animation-name: indicator-placed;
    animation-duration: 0.15s;
    /* animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1); */
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    0%   {opacity: 1; transform: translateY(0px);}
    100% {opacity: 0; transform: translateY(15px);}
}

@keyframes fadeIn {
    0%   {opacity: 0; transform: translateY(15px);}
    100% {opacity: 1; transform: translateY(0px)}
}

.wompwomp {
    animation-name: fadeOut;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards ;
}

#tracker, #progress, #settings, #help, #viewport {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards ;
}

#noviewport {
    animation-name: fadeOut;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-fill-mode: forwards ;
}