:root {
    --main-bg-color: #000;
    --main-font-color: #eee;
    --scroll-bar-color: #c5c5c5;
    --scroll-bar-bg-color: #f6f6f6;
  }
html, body {
    height: 100%;
    background-color: var(--main-bg-color) !important;
    color: var(--main-font-color) !important;
    position: relative;
    font-family: 'Space Mono', monospace !important;

}
body {
  transition: all 1s ease-in;
}
.row {
  transition: all 1s ease-in;
}
.logo-loader {
  max-width: 200px;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #fff;
  animation: image-move 1s none;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
}
.logo-animate {
  max-width: 100%;
  animation: image-rotation 10s infinite;
  transform: rotate(0);
}

@keyframes image-rotation {
  0% {
    transform: rotate(0deg);
  }
  9%{
    transform: rotate(360deg);
  }
  11%{
    transform: rotate(360deg);
  }
  20%{
    transform: rotate(0deg);
  }
}

@keyframes image-move {
  0% {
    top: calc(50% - 100px);
  }
  100% {
    top: 1em;
  }
}

.main {
  padding-top: calc(200px + 4em);
  max-height: 0;
  overflow: hidden;
  animation: show-content 4s forwards;
  animation-delay: 3s;
  transition: all 1s;
}
.main h2 {
  text-align: center;
  min-height: 78px;
}

@keyframes show-content {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 5000px;
  }
}

.menu-section {
  margin-bottom: 2em;
}
.menu-item{
  display: flex;
  flex-direction: row;
  align-items: end;
}
.dots {
  flex-grow: 1;
  border-bottom: 1px dotted #fff;
  padding-left: 2px;
  padding-right: 2px;
  min-width: 2em;
  margin: 6px;
}
.whatsapp-contact img {
  width: 25px;
}
.whatsapp-contact a {
  color: #eee;
  text-decoration: none;
  transition: .3s;
}
.whatsapp-contact a:hover {
  text-shadow: 0 0 12px #fff;
  color: #eee;
}

.overlay-keys {
  position: fixed;
  z-index: 10;
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  top: calc(50% - 2.5em);
  left: calc(50% - 5em);
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 10em;
  height: 5em;
  opacity: 0;
  transition: all 0.5s ease-in;
}
.overlay-keys.visible {
  display: flex;
  opacity: 1;
}
.key-container {
  padding: 2em;
}
.btn-key {
  box-shadow: -3px 3px 0px 0px white;
  border: 1px solid #555;
}
.btn-key:active {
  box-shadow: -3px 3px 0px 0px gray inset;
}

/* Konami */

body.psych {
  background-image: url(psych_bg.png);
  background-position: center center;
  background-size: cover;
}

.psych .container .row {
  border-radius: 10px;
  background-color: rgba(0,0,0,0.6);
  padding-top: 2em;
  margin-top: 24em;
}




/*DO NOT TOUCH*/
::-webkit-scrollbar-corner {
  background: rgba(0,0,0,0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}
/* Track */
 ::-webkit-scrollbar-track {
   background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
   background: #bec4c4;
   border-radius: 5px;
   border: 1px solid var(--main-bg-color);
}

/* Handle on hover */
 ::-webkit-scrollbar-thumb:hover {
    background: #555;
}