* {
    margin: 0;
    padding: 0; 
}

body {
    background: #292B2A;
    margin: 0;   /* to remove default margin of 8px */
}

#outer-wrapper {
    display: table; 
    position: absolute; 
    width: 100%;
    height: 100%;
}    

#middle-wrapper {
    display: table-cell;
    padding-top: 40px; 
    vertical-align: top; 
    text-align: center; /* To center child elements*/
}

#description-wrapper {
    display: inline-block; /* text-align affects inline-block */
    text-align: left; 
    margin-bottom: 20px; 
}

.description {
    color: #AFAFAF; 
    margin: 0 5%; /* for mobile devices */
    font-family: sans-serif;
    line-height: 1.5;
}

#shortcut {
    border: 1px solid #AFAFAF;
    padding: 0 4px; 
}

#search-box {    
    display: block;
    margin: auto; 
    width: 40%; 
    padding: 7px; 
    font-size: 25px; 
    color: white; 
    border: 3px solid #33A6C4;
    border-radius: 5px; 
    background: none; 
}

#search-button {
    display: block; 
    margin: auto; 
    padding: 10px;
    margin-top: 10px; 
    font-size: 25px; 
    color: #33A6C4;
    background: none; 
    border-radius: 5px; 
    border: 3px solid #33A6C4; 
}

#search-button:hover {
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s; 
    color: white; 
    background: #33A6C4;
}

#results, #kanji-block {
    display: inline-block;  
    margin: 0 20px; 
    margin-top: 20px; 
    font-size: 22px;
    font-family: sans-serif;  
    color: #BFBFBF; 
    text-align: center; 
}

#kanji-block {
    border: 1px dashed #BFBFBF;
    margin: 5px; 
    padding: 10px; 
}

h2 {
    margin: 5px; 
}

#character {
    /* display: inline-block; */
    font-size: 50px;
    margin-bottom: 5px; 
}

#id {
    padding: 0 4px; 
    border: 1px solid #BFBFBF;
}

#meaning {
    /* display: inline-block; */
    margin: 10px 0; 
}

a {
    color: #BFBFBF;
}


