/* GENERAL STYLES
----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

body {
  background: url("assets/images/Background_space.png") top left repeat-y fixed;
  background-size: cover;
  color: white;
  line-height: 2;
}

main {
  width: 900px;
  position: relative;
  margin: 50px auto;
}

.centered {
  text-align: center;
}

.left {
  text-align: left;
}

a.default:link {
  color: #03a6d5;
  display: inline-block;
  text-shadow: 2px 2px 2px #111;
}

a.default:hover,
a.default:active {
  text-decoration: underline;
  color: #03a6d5;
}

a.default:visited {
  color: #b396ef;
}

.nes-list {
  list-style-position: inside;
  margin-left: 20px;
}

.nes-list li::before {
  color: #f2c409 !important;
}

h2 {
  font-size: 18px;
  text-align: center;
}

h3 {
  text-align: center;
  margin: 40px auto;
}

h4 {
  text-align: center;
  margin: 20px auto;
}

hr {
  margin: 50px 0;
}

.is-light {
  background-color: rgba(255, 250, 250, 0.6);
  color: #111;
}

.nes-btn-inactive {
  pointer-events: none;
}

.updatelog {
  background-color: #222;
  color: aqua;
  padding: 10px 0 5px 0;
  margin: 50px 0;
}

.updatelog marquee img {
  margin-top: -4px;
}

.kitten {
  scale: 1.5;
  margin: 0 auto;
}

.counter {
  margin: 50px auto;
  text-align: center;
}

/* HEADER
----------------------------------------------------- */
.navigation {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-around;
}

.navigation .is-dark:hover:first-child {
  color: #111;
  background-color: #f7d51d;
  box-shadow: 0 0.5em #f7d51d, 0 -0.5em #f7d51d, 0.5em 0 #f7d51d, -0.5em 0 #f7d51d;
}

@font-face {
  font-family: "04b30";
  src: url("assets/fonts/04b_30__-webfont.woff2") format("woff2"), url("assets/fonts/04b_30__-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-family: "04b30";
  font-weight: 400;
  font-size: 70px;
}

.rainbow-text {
  text-align: center;
  font-weight: bold;
}
.rainbow-text .block-line > span {
  display: inline-block;
}
span.block-line > span {
  background-image: linear-gradient(90deg, #f66c1c, #fe4838, #fb295b, #ed1180, #d504a6, #b601c8, #910ae3, #6b1df6, #4739fe, #285bfb, #1181ed, #03a6d5);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.rainbow-text img {
  scale: 2;
  margin: 0 15px;
}

/* KITTENS LIST
----------------------------------------------------- */
#adoptable_kittens {
  border-collapse: collapse;
  border: none;
  width: 100%;
  margin: 40px auto;
}

#adoptable_kittens .nes-btn {
  background-color: #910ae3;
  color: white;
}

#adoptable_kittens td {
  width: 33.33%;
  text-align: center;
  padding: 10px;
}

#adoptable_kittens h3 {
  text-align: center;
  margin: 20px auto 10px;
}

/* FOOTER 
----------------------------------------------------- */
.credits-footer {
  background-color: #212529;
  text-align: center;
  padding: 20px;
}

/* QUIZ PAGE
----------------------------------------------------- */
#quiz .center {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-top: 2rem;
}

.question {
  padding: 1rem;
  margin: 2rem 0;
}

.from-left {
  animation: slideInLeft 0.5s ease-in-out;
}

.from-right {
  animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* KITTEN PROFILE 
----------------------------------------------------- */
.profile {
  text-align: center;
  padding: 40px !important;
}

.profile .is-light {
  width: 150px;
  margin: 20px auto;
}

.profile .is-light img {
  scale: 1.5;
}

.profile button {
  margin: 20px auto;
}

/* ABOUT PAGE
----------------------------------------------------- */
.about h3 {
  max-width: 600px;
  line-height: 20px;
  margin: 30px auto 0;
}

.about img {
  margin: 30px auto;
}

.about p {
  margin: 30px auto;
}
