* {
  cursor: default;
  font-size: 20px;
  outline: none;
  word-break: break-all;
  text-decoration: none;
  user-select: none;
  padding: 0;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

body {
  background: #111;
  color: #fff;
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.note {
  padding-top: 25px;
  font-family: 'Consolas';
  font-size: 14px;
  font-style: italic;
  color: #444;
}

img {
  width: 350px;
  padding-bottom: 25px;
}

img:hover {
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type=text]{
  background: #444;
  color: #FFF;
  padding: 25px;
  border: none;
  cursor: text;
  border-radius: 10px;
  width: 300px;
}