@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Special+Elite&display=swap');

#canvas {
  background-size: cover;
  background-repeat: repeat-x;
  overflow: hidden;
}

img, h1, p {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

#heading{
    font-family: 'Sacramento', cursive;
    font-weight: normal;
    margin-top: -30px;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: absolute;
    bottom: -30px;
    left: 0;
}

#canvas > p {
  font-family: 'Special Elite', cursive;
  background-color: black;
  color: white;
  margin: 0;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
  border: 1px dashed white;
}

input {
  display: block;
  background-color: rgba(0,0,0, 0.9);
  color: yellow;
  width: 500px;
  border: none;
  border-bottom: 2px dashed black;
  font-size: 24px;
  padding: 16px;
  border-radius: 8px;
  margin: 10px auto;
  outline: none;
  font-family: 'Fredoka One', cursive;
}

#canvas > button {
  font-size: 18px;
  margin: 10px;
  border-radius: 10px;
  padding: 15px;
  border-color: white;
  font-family: 'Fredoka One', cursive;
  background-color: #ed5a72;
  cursor: pointer;
  outline: none;
  color: white;
}