/* 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;
  max-width:100%; max-height:100vh;
}

img {
      width: 200px; /* Sets the width to 200 pixels */
      height: auto; /* Maintains aspect ratio by adjusting height automatically */
    }
    
    container {
    width: 200px;
    height: 120px;
}


/* Resize images */
.container img {
    width: 100%;
    height: auto;
}
.myImgClass {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  max-width: 50vw;
  max-height: 50vh;
}
