h1 {color:red; text-align:center; font-family: verdana;}
h2 {color:red; text-align:center; font-family: verdana;}
h3 {color:red; text-align:left; font-family: verdana;}


input {
   -webkit-appearance: none;
   appearance: none;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px solid #0363F0;
  vertical-align: -3px;
  color: #0363F0;
}
.container {
  display: flex;
  flex-direction :column;
  justify-content: space-between;
  align-items: left;
}

input[type="checkbox"]:before {
  content: "✔";
  position: absolute;
  font-size: 1.5em;
  right: -0.2em;
  top: -0.6em;
  visibility: hidden;
}
input[type="checkbox"]:checked:before {
  visibility: visible;
}

body { background-color: lightblue; 
font-family: verdana; 
font-weight: bold;
font-size: 18px;
}
