body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #f1f1f1;
}

/* Create a container for both desktop and mobile */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f1f1f1;
}

/* Create a container for desktop */
.desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f1f1f1;
}

/* Create a material ui-like button */
.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #f1f1f1;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
}
