/* BEGIN RESET */

/* 2. Remove default margin */
* {
  margin: 0;
}

/* END RESET */

body {
  /* background-color: black; */

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100vw;
  height: 100vh;
}

.game {
  background-image: url('assets/sprout.png');
  background-size: cover;

  /* todo: can scale */
  height: 720px;
  width: 1280px;

  overflow: hidden;


  /* object-fit: contain; */
  /* width: 100%; */
  /* height: 100%; */
}
