.fakeInput {
    background-color: white;
    display: block;
    width: 80%;
    margin: 1em auto;
    font-size: 1.25em;
    font-family: 'Monaco', monospace;
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: 0.25s;
 }

 .disabled {
    background-color: rgb(235, 235, 228);
    color: rgb(84, 84, 84);
 }

 #what {
    right: 0px;
    bottom: 0px;
 }

 .noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
 }

 @media screen and (max-width: 450px) {
    #container {
       width: 100%;
       left: 0%;
    }
 }