* {
  user-select: none;
}

html, body {
  padding: 0;
  margin: 0;
  background-color: black;
}

::-webkit-scrollbar {
    display: none;
}

.box {
  border: 0.5em solid white;
  width: auto;
  min-width: 60em;
  max-width: 95%;
  height: auto;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  word-break: break-word;
  display: flex;
  align-items: flex-start
}

img {
  padding: 3em;
}

#text {
  color: white;
  font-family: "Comic Sans MS";
  padding-right: 1em;
  font-size: 2em;
}

/* footer */

.footer {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}

a {
  display: flex;
  order: -1;
  flex-basis: auto;
  text-decoration: none;

  color: #555;
  font-family: "Verdana";
  padding: 1em;

  transition: 100ms color;
}

a:hover {
  color: #999;
  text-decoration: underline;
}

input:hover {
  background-color: #222;
}

form {
  display: flex;
  flex-grow: 3;
  padding: 0;
  margin: 0;
}

input {
  display: flex;
  width: 100%;
  margin: 0 1em 0 1em;

  background-color: #111;
  color: #eee;
  border: 0;
  border-radius: 2em;
  padding: 1em 2em 1em 2em;

  text-transform: lowercase;
  transition: 100ms background-color;
}
