* {
    margin: 0;
    background-color: black;
  }
  
  body {
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    height: 100vh;            /* Make body take full viewport height */
  }
  
  img {
    width: 800px;
  }
