/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Times New Roman", Times, serif;
}

p, h1, h2, h3, span {
  display: inline-block;
  transform: scaleY(2);
  transform-origin: bottom;
}

img{
    image-rendering: pixelated;
  image-rendering: crisp-edges;
}

canvas {
  
   transform: scaleY(2), scaleX(2);
   image-rendering: pixelated;
}



thisdidntwork {
        width: 200px;
        height: 600px;
        background-color: blue;
        position: absolute; /*Can also be `fixed`*/
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        /*hi a guy wrote a comment here but i didnt like the look of it. i think my comment looks a lot nicer, dont you think?*/
        max-width: 100%;
        max-height: 100%;
        overflow: auto;
}

letstrythisthen {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; 
}
