*{
  box-sizing: border-box;
}

body{
  background: #74531d70;
}

canvas{


  border: solid 5px black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  max-width: 100vw;
  max-height: 100vh;
  font-family: 'Bangers', cursive;
  
  /* 
  */
  display: none; 


}

img, .mobile__view{
  display: none;
}


@media screen and (max-width: 1020px){
  main{
    display: none;
  }

  body{
    background-color: white;
  }
  .mobile__view{
    display: block;
    text-align: center;
    width: 80vw;
    margin: 0 auto;
    
    margin-top: 50%;

    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;

  }

  .mobile__view p{
    margin-top: .5rem;
  }

  .mobile__view img{
    display: block;
  }
}