#demo {}

#cursor-wrapper {
    position: relative;
    z-index: 1;
    width: 2em;
    height: 2em;
}

#cursor {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#hint{
    position: absolute;
    float: right;
    margin-right: 100%;
    width: 5em;
    top: 4em;
}

#center-wrapper{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    width: 80%;
    height: 10em;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(auto, auto);
    grid-gap: 10%;
}


#key-input-wrapper {

    background-color: gray;

    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-auto-rows: minmax(auto, auto);

    padding: 1em;

    grid-column: 1 / 4;
    grid-row: 1;
}

#key-input {
    /* height: 100%;
    width: 100%; */
    font-size: large;

    grid-column: 1/3;
    grid-row: 1;
}

#search-button {
    /* height: 100%;
    width: 100%; */

    grid-column: 3;
    grid-row: 1;
}

#silly-url {
    /* height: 100%;
    width: 100%; */
    word-break:break-all; 
    grid-column: 1 / 4;
    grid-row: 2;
}

#search_format-input{
    grid-column: 1 / 4;
    grid-row: 3;
}
