




canvas{
    /* margin: 0px !important; */
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
}


body{

    background-color: #fafafa;

    /* background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.contents{

    width:100%;
    max-width: 800px;

    margin: 0 auto;


}

.sorry{
    font-size: 50px;
    display: none;
}

/* .title{
    text-align: center;
    width:100vw;
    height:100vh;
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 100px;
    font-weight: bold;

    z-index: 999;

    color: red;

    transform: rotate(-10deg);

    opacity: 0.8;

    display: none;

} */


.header{
    /* display: flex; */
    /* justify-content: flex-start; */

    width: 100%;

    text-align: left;

    position: absolute;
    top: 0px;
    left: 0px;

    /* max-width: 800px; */
    /* opacity: 0.9; */

    /* border-top: 6px solid red; */

}

.info{
    font-size: 16px;
    position: absolute;
    bottom: 0px;
    /* padding-left: 3px; */
    text-align: center;
    /* background-color: #fafafa; */
    background-color: rgba(255,255,255,0.8);
    border-radius: 3px;
}

.header .title{

    font-size: 30px;
    padding: 8px;

    font-weight: bold;
    color: red;

    /* background-color: #fff; */

}

.header .highest_score{
    position: absolute;
    top: 0;
    right: 0;    
    font-size: 25px;
    padding: 5px;

    font-weight: bold;
    color: red;

}



.gameover{

    width:100vw;
    height: 90%;

    position: absolute;
    top: 0;
    left: 0;

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;

    z-index: 999;

    color: #ff0000;

    opacity: 0.8;

    display: none;

    line-height: 1.0;
    font-weight: bold;

}

.gameover .title{
    font-size: 60px;
}

.gameover .score{

    font-size: 100px;
    /* padding-top: 20px; */
    color: #3333ff;

}



.footer{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 100px;
}

.footer .next{
    font-size: 70px;
    line-height: 0;
    text-decoration: none;

    color: #ccc;

    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */

    box-shadow: rgb(85, 91, 255) 0px 0px 0px 3px, rgb(31, 193, 27) 0px 0px 0px 6px, rgb(255, 217, 19) 0px 0px 0px 9px, rgb(255, 156, 85) 0px 0px 0px 12px, rgb(255, 85, 85) 0px 0px 0px 15px;

}

.footer .emoji{
    font-size: 150px;
    position: relative;
    left: -90px;
    top: 150px;
    text-decoration: none;
    transform: rotate(-35deg);
}

.footer .next img{
    max-width:250px;
    border: 3px solid #8080ed;
}






.scale-up-center {
	-webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

 @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  

  