html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  background-color: #6f6a68;
}

canvas {
  display: flex;
}
button {
  padding:1%;
  font-family: 'Poppins';
  border-radius: 10px;
  background-color: #544f4e;
  border-style: hidden;
  font-weight: bold;
  color: white;
  font-size:15px;
  margin:0px;
  width:300px;
}

button:hover {
  padding:1%;
  font-family: 'Poppins';
  border-radius: 10px;
  background-color: #393534;
  border-style: hidden;
  font-weight: bold;
}

input{
  padding-left:0px;
  padding-right:0px;
  padding-top: 10px;
  padding-bottom:10px;
  margin:0px;
  width:300px;
  text-align:center;
  font-family: 'Poppins';
  border-radius: 10px;
  font-size: 20px;
  color: #544f4e;
  border-style: hidden;
  font-weight: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url("assets/fonts/poppins.ttf");
}

@font-face {
    font-family: 'Poppins';
    src: url("assets/fonts/bold-poppins.ttf");
    font-weight: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url("assets/fonts/italic-poppins.ttf");
    font-style: italic;
}