html, body {
  font-family: 'ojuju';
  font-size: 100%;
  margin: 0;
  padding: 0;
  background-color: rgb(255, 231, 243);
}

canvas {

  padding-left:0;
  padding-right:0;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  display: block;
  box-shadow: 0 4px 8px 0 rgba(255, 0, 153, 0.3), 0 6px 20px 0 rgba(24, 54, 173, 0.3);
}

h1{
  text-align: center;
  color:#E91E63;
  font-size: 4em;
  font-weight: 400;
  line-height: 10%;
  font-family: 'ojuju';
  letter-spacing: 0.1em;
  margin-top:20;
}

h4{
  font-size: 1.2em;
  font-family: 'ojuju';
  line-height: 1.2em;
  font-weight: 200;
  text-align: center;
  margin-top:10;
}


button {
  font-family: 'ojuju', 'bold';
  font-weight: bold;
  font-size: 1.5em;
  width: 100px; 
  height: 100px;
  padding: 0;
  border: none;
  background-color: #E91E63;
  color: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  
}

input[type="text"], input[type="email"], input[type="search"] {
  font-family: 'ojuju';
  font-size: 1em;
  padding: 10px;
  border: 2px solid #E91E63;
  border-radius: 10px;
  outline: none;
  color: #333;
  background-color: #fff7fb;
  width: 250px;
  margin: 10px;
}

input[type="text"]:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

