body {
    margin: 0px;
}

.page {
    /* max-width: 960px;
    min-width: 300px;
    margin: 0 auto; */

    /* top:50%; */
    left:50%;
    position:absolute;
    transform: translateX(-50%);
  }
  
  html {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #f8f8f8;
    margin: 0px;
    padding: 0px;
    background-color: #454545;
    /* text-align: center; */
  }
  
  header {
    text-align: center;
    font-size: 1vw;
  }


  button {  
    left:50%;
    position:absolute;
    transform: translateX(-50%);
  }
  header span {
    font-size: 60px;
    font-size: 2em;
    color: #77f159;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
  }
  
  .ball {
  position: relative;
  }

  .ball img{
      width: 25vw;
  }

  .answer {
    color: #bbb;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    font-family: "Montserrat", sans-serif;
    top: 40%;
    left: 38%;
    width: 24%;
    font-size: 1vw;
    text-align: center;
  }
  
  #questionButton {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-size: 1vw;
    color: #f8f8f8;
    background-color: #0000e9;
    border-radius: 5px;
    border: none;
    padding: .5em 1em;
    width: 80%;
    max-width: 15em;
    margin-top: 1em;
  }
  
  footer p {
    text-transform: uppercase;
    font-size: 12px;
    font-size: .75em;
  }

  #ip {
    left:50%;
    top: 115%;
    position:absolute;
    transform: translateX(-50%);
  }

  
  @media screen and (max-width: 600px) {
    .ball img{
      /* width: 100%; */
      width: 100vw;
      /* max-width: 2000vw; */
    }

    #questionButton {
        font-size: 3vw;
    }

    .answer {
        font-size: 3vw;
    }

    header {
        font-size: 2vw;
    }

    #ip {
      left:50%;
      top: 115%;
      position:absolute;
      transform: translateX(-50%);
    }
  }

.rotate {
  animation: signalAnimation 1.5s ease-out both;
}

@keyframes signalAnimation {
  0% {
    -webkit-transform: translateZ(0) scale(1) rotate3d(1, 1, 0, 0deg);
    transform: translateY(0) scale(1) rotate3d(1, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: translateZ(450px) scale(2) rotate3d(1, 1, 0, -180deg);
    transform: translateZ(450px) scale(2) rotate3d(1, 1, 0, -180deg);
  }
  60% {
    transform: translateZ(0) scale(1) rotate3d(1, 1, 0, -360deg);
  }
  62% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  66% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  72% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  78% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }
  85% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  90% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
