/* 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 {
  margin: 0;
  padding: 0;
  background: #000000;
  font-family: 'Arial';
}
.container{
  width: 365px;
  height: 432px;
  position: relative;
  margin: 60px auto;
}
.container img{
  width: 365px;
  height: 432px;
}
img {
  max-width: 100%; /* Ensures the image never exceeds its container's width */
  height: auto;    /* Automatically adjusts the height to maintain the aspect ratio */
  display: block;  /* Helps with centering and avoiding layout issues */
}
.text{
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
}