* {
  border: 0;
  margin: 0;
  padding: 0;
  user-select: none;
}

body,
html {
  overflow: hidden;
}

.hidden {
  display: none;
}

body {
  background: #222;
  color: #ddd;
  font-family: 'Lato';
  font-size: 2rem;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  max-height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border: none;
}

.wrapper h1 {
  font-size: 6vh;
}

.wrapper p {
  font-size: 2.6vh;
}

.wrapper a {
  color: #EAE8E3;
}

.minidoggo {
  position: absolute;
  width: 7vw;
  opacity: 0;
}

@media screen and (max-width: 900px) {
  .minidoggo {
    width: 12vw;
  }
}

.minidoggo--animate {
  animation-name: splat, bye;
  animation-duration: 0.6s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 2.01, 0.73, 0.92);
  transform-origin: center center;
  animation-fill-mode: forwards;
}

.minidoggo--appear {
  animation-name: splat;
  animation-duration: 0.6s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 2.01, 0.73, 0.92);
  transform-origin: center center;
  animation-fill-mode: forwards;
}

.minidoggo--disappear {
  animation-name: bye;
  animation-duration: 1.2s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 2.01, 0.73, 0.92);
  transform-origin: center center;
  animation-fill-mode: forwards;
}



.img { 
  pointer-events: none; 
}

.minidoggo img {
  max-width: 100%;
}

.doggo {
  max-height: calc(100vh - 400px);
  max-width: 80vw;
}

.doggo__container {
  position: relative;
}

.doggo__head {
  background: red;
  width: 6%;
  height: 6%;
  position: absolute;
  top: 26.5%;
  left: 32.5%;
  transform: translateX(-50%);
  opacity: 0;
}

.doggo__paw {
  background: red;
  width: 8%;
  height: 9%;
  position: absolute;
  top: 73%;
  left: 82%;
  transform: translateX(-50%);
  opacity: 0;
}

.doggo__chest {
  background: red;
  width: 15%;
  height: 20%;
  position: absolute;
  top: 45%;
  left: 36%;
  transform: translateX(-50%);
  opacity: 0;
}

.doggo__ear {
  background: red;
  width: 15%;
  height: 20%;
  position: absolute;
  top: 5.5%;
  left: 54.6%;
  transform: translateX(-50%);
  opacity: 0;
}

.doggo--boop {
  animation-name: boop;
  animation-duration: 0.1s;
  animation-iteration-count: 10;
}

.typewrite > .wrap {
  border-right: 0.08em solid #fff;
}

@media screen and (orientation: landscape) {
  .doggo {
    max-height: 50vh;
  }
}

/* ANIMATIONS */
@keyframes boop {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes paw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(36000deg);
  }
}

@keyframes minidoggo-left {
  100% {
    bottom: 120%;
    transform: translateX(60vw);
  }
}

@keyframes minidoggo-right {
  100% {
    bottom: 120%;
    transform: translateX(-60vw);
  }
}

@keyframes splat {
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bye {
  100% {
    transform: rotateX(90deg) scale(2);
    opacity: 0;
  }
}

a {
  text-decoration: none;
}

.social-buttons button {
  border-radius: 6px;
  width: 4rem;
  height: 4rem;
  display: inline-block;
  margin: 10px;
  cursor: pointer;
  background-color: transparent;
}

.social-buttons button i {
  font-size: 3rem;
  line-height: 40px;
  text-align: center;
  color: #08ecfc;
}

@media only screen and (max-width: 900px) {
  .social-buttons button {
    border-radius: 6px;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    background-color: transparent;
    margin: 1rem;
  }

  .social-buttons button i {
    font-size: 4rem;
    line-height: normal;
    text-align: center;
    color: #08ecfc;
  }
}

.fa-telegram, .fa-discord, .fa-instagram {
  opacity: 1;
}

.fa-telegram.active, .fa-discord.active, .fa-instagram.active {
  opacity: 0.5;
}

.social-buttons button i {
  transition: transform 0.1s ease;
}

@media only screen and (min-width: 900px) {
  .social-buttons button i:hover {
    transform: scale(1.2);
  }
}

.shake {
  animation: shake 0.5s;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.side-modal {
  width: 100%;
  border-radius: 6px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #353535;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 2px;
}

@media only screen and (max-width: 900px) {
  .side-modal{
  top: 56% !important;
  }

  .close {
    font-size: 3.4rem !important;
  }
}

.side-modal-content {
  width: 100%;
  height: 100%;
}

.side-modal-body {
  padding: 2.6rem;
  padding-top: 0px;
  display: block;
}

@media only screen and (max-width: 900px) {
  .side-modal-body {
    padding-bottom: 3rem;
  }
}

.side-modal-body p {
margin-top: 2rem;
font-size: 2.4rem;
}

@media only screen and (min-width: 900px) {
  .side-modal-body p{
    font-size: 1.8rem;
  }
}

.side-modal-header {
  margin-left: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-modal-header h2 {
  margin-top: 0.8rem;
}

.close {
  font-size: 3rem;
  cursor: pointer;
  color: #08ecfc;
  border-radius: 50% !important;
}

.fa-question-circle {
  transition: transform 0.2s ease;
}

.fa-question-circle.enlarged {
  transform: scale(1.2);
}

.nothinghere {
  width: 100%;
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration:underline;
  cursor: pointer;
}

.side-modal-body a {
  text-decoration:underline;
  font-style:italic;
  font-weight:normal;
}

.side-modal-body .more-modal {
  margin-top: 3.8rem;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  .side-modal-body .more-modal {
    font-size: 2.2rem;
  }
}

.expand-height {
  animation: expand-height 1s ease;
}

@keyframes expand-height {
  0% {
    height:66%;
  }
  100% {
    height: 100vh;
  }
}

.full-screen {
  top: 50% !important;
  position: fixed;
  width: 100vw;
  height: 100vh;
  transition: all 1s ease;
}





/* Custom Modal Content */

.side-modal-more-body {
  display: flex;
  align-items: flex-start;
  padding-top: 3rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.side-modal-more-content {
  width: 100%;
  text-align: left;
}

.side-modal-more-content p {
margin-bottom: 1rem;
}