/* CSS (in style.css file) */
body {
  margin: 0;
  background-color: #131321; /* light gray background */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* make the container full height */
}

img {
  max-width: 80%; /* make the image 80% of the container width */
  /*border-radius: 10px; /* add a slight border radius */
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* add a slight shadow */
}