/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  max-width:700px;
  min-height: 100vh;
  background-image: url('/bg.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  font-size:18px;
  margin: 0 auto;
  padding: 0 15px;
  color: white;
  font-family: Verdana;
  box-sizing:border-box;
}
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}
 @keyframes fadeInSide {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
  }

.fadeInSide-animation {
  animation: 1.5s fadeInSide;
}
.fadeInSide-animationslow {
  animation: 2s fadeInSide;
}
.fadeInSide-animationslower {
  animation: 3s fadeInSide;
}
.header-banner {
  display:flex;
  align-items: center;
  width:100%;
  margin-top: 20px;
}
.site-logo {
  width: 45%;
  max-width: 360px;
  height: auto;
  position: relative;
  top: -30px;

}
.speech-bubblep {
	position: relative;
	background: #ffffff;
	color: black;
	border-radius: .4em;
	text-align: center;
	padding: 12px 12px;
	margin: 0;
	top: 15px;
	left: -10%;
	max-width: 300px;
}
.speech-bubblep:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 30px solid transparent;
	border-left-color: #ffffff;
	border-right: 0;
	border-bottom: 0;
	margin-top: -15px;
	margin-right: -30px;
	align-self: center;
}
.ominous-container {
  position:relative;
  display: flex;
  align-items: center;
  width: 55%;
  max-width: 400px;
  margin: 20px 0;
  box-sizing: border-box;
}
.eyeballkey {
  width: 100%;
  max-width: none;
  height:auto;
  position: relative;
  z-index: 1;
}
.funkybox {
  background: #77285c;
  color:#f5d547;
  text-align:center;
  border: 10px groove white;
  padding: 12px;
  margin: 20px;
}
.splatter, .splatter2 {
  position:absolute;
  width:  180%;
  max-width:none;
  top:-90%;
  left: 0;
  pointer-events: none;
}
.splatter {
  z-index: -1;
}
.splatter2 {
  left: -40%;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .splatter, .splatter2 {
    position: absolute;
    top:10px;
    left: 50px;
    width: 100%;
    max-width: 100vw;
    transform: none;
  }
  .header-banner {
    overflow:hidden;
  }
  .site-logo {
    top: 10px;
  }
}