/* @font-face { 
font-family: 'Open Sans';
src: url('./fonts/OpenSans-Regular.ttf') format('truetype');
} */

html {
    background-color: rgb(243, 220, 220);
}
div {
  width: 100%;
}

body {
  margin: 0;
  display: flex;

  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;
}
