*,
*:before,
*:after {
  box-sizing: border-box;
} 
 
html,
body {

}

body {
  display: flex; 
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  flex-direction: column;
  background: url(https://data.whicdn.com/images/313751876/superthumb.jpg?t=1528596797);
  font-family: "Comic Sans MS", "Comic Sans", sans-serif;
  padding: 1em;
}

.note {
  margin-bottom: 25px;
  line-height: 1.5;
}

.blob-house {
  width: 128px;
  height: 128px;
  position: relative;
  margin-bottom: 25px;
}

canvas {
  display: block;
}

input {
  position: absolute;
  top: 65px;
  left: 17px;
  background: none;
  border: none;
  font-size: 19px;
  z-index: 100;
  width: 76px;
  text-transform: uppercase;
  color: #2f2f2f;
}

input,
button {
  font-family: inherit;
}


.button {
  background-color:#0F0;
	border: 5px solid blue;
  color:blue;
  padding: 25px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px
	cursor:pointer;
}
.dropbtn {
  background-color: #3498DB
  color:white;
  padding: 16px;
  font-size: 16px; 
  border: none;
  cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display:inline-black;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width:160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0,.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding:12px 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover,{background-color: #ddd;}

.show {display: block;}
