/* Kittens - custom stylesheet (replaces the old ModestaCSS/Twemoji dependency) */

* { box-sizing: border-box; }

html, body { margin: 0 auto; height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #fff;
  background-color: #181818;
}

a { color: #d35400; text-decoration: none; }

.fullscreen {
  height: 100%;
  background-color: #181818;
  position: relative;
}

.background {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(5px) brightness(50%);
  height: 100%;
  width: 100%;
}

.center-object {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%;
}

.title { font-size: 13vmin; margin: 0; text-align: center; }

.undertitle { flex-direction: column; margin: 0; }

.accent-text { color: #d35400; }

.buttons {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  text-align: center;
}

.btn {
  backface-visibility: hidden;
  background-color: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  height: 38px;
  line-height: 38px;
  margin: .5em;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { filter: brightness(65%); transition: filter 200ms ease; }

.accent-bg { background-color: #d35400; }

.animation {
  animation: button-enter 1s ease-in-out forwards;
  opacity: 0;
  position: relative;
}

@keyframes button-enter {
  from { opacity: 0; top: 2em; }
  70% { top: -.3em; }
  100% { opacity: 1; top: 0; }
}
