*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'narrow';
    src: url('./arialnarrow.ttf');
}

body, html{
    width: 100%;
    height: 100%;
    background: color #f9f9f9;
    color: black;
    font-family: 'narrow';
    letter-spacing: .6pt;
}

body{
    overflow: hidden;

}
.head{
    justify-content: center;
    position: relative;
    font-size: 20px;
    height: 15px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}


h1{
    font-size: 2rem;
    margin: 30px;
    font-weight: 100;
    width: 51vw;
}

#status{
    width: 100%;
    padding-top: 10px;
  text-align: center;
}

#statement, .colophon{
    display: none;
}

.colophon {
    position: fixed;
    border: 1px solid black;
    top: 8vh;
    right: 30px;
    margin: auto;
    padding: 15px;
    transform: rotate(0deg);
    transform-origin: center center;
    width: 28vw;
    height: auto;
    background: white;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.2rem;
    justify-content: center;
  }
  .colophon p {
    text-align: center;
  }
.colophon #last{
   text-align: right;
}
#typewriter span{
   border-bottom: dotted 6px;
}
.up{
    background-color: black;
    color: white;
}
.stick{
    position: absolute;
    animation: fallStick 0.8s ease-in ;
    max-width: 714px;
    max-height: 250px;
    filter: brightness(0%);
  /* filter:drop-shadow(5px 5px 10px #000000); */
}

.away{
    animation: away .8s linear forwards;
}

#divination{
    position: fixed;
    z-index: 1000;
    top: 15px;
    right: 30px;
    color: white;
    background-color: black;
    border: none;
    border-radius: 0,3em;
    padding: 3px 6px;
    display: none;
}

@keyframes away {
    from{
    } to{
        bottom: 0%;
        rotate: 0deg;
        scale: .6
    }
}

@keyframes fallStick {
    0%{scale: 3.5;}
    90%{scale: 1}
    95%{scale:1.1}
    100%{scale: 1}
}

@keyframes egg {
    from{
    } to{
        width: 8%;
        left: 6%;
        top: 0;
        rotate: -47deg;
    }
}


.rollEgg{
    animation: egg .8s linear forwards;
}


#player{
    width: 15%;
    margin: 0 38% 0 auto;
    display: none;
}


#play{
    width: 55%;
    /* width: 50%; */
/* margin: 0 25%; */
}

#icon{
    width: 5%;
}
#egg{
    width: 8%;
    left: 27%;
    top: -2rem;
    rotate: 30deg;
    position: relative;
}


 #icon{
    width: 20%;
    position: relative;
    right: 38%;
    margin-bottom: 13%;
    filter: invert();
  }

@media (max-width: 801px) {

    body, html{
        width: 100vw;
        height: 100vh;
        position: fixed;
    }
    .stick{
    max-width: 300px;
    max-height: 100px;

}

h1{
    font-size: 1.4rem;
    width: 85vw;
}
#typewriter span{
    border-bottom: dotted 3px;
 }
.colophon {
    position: absolute;
    width: calc(100% - 60px);
    margin: 30px;
    height: 18vh;
    right: unset;
    top: 70vh;
    padding-bottom: 7vh;
  }

.head{
font-size: 1.4rem;  }

  #player {
  width: 60%;
margin: 0px 28%;}

  #egg{
    margin-bottom: 4%;
  }

  @keyframes eggMobile {
    from{
    } to{
        margin-left: unset;
        left: 14%;
        margin-bottom: -14%;
        rotate: 270deg
    }
}

.rollEgg{
    animation: eggMobile .8s linear forwards;
}
 
#divination{
    top: 70vh;
    width: 15%;
    margin-left: 42.5%;
    right: unset;
    }
}