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

h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24pt;
}

#content {
    margin: 10px;
    padding-bottom: 40px;
}

.input-label {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 12pt;
    margin-top: 0px;
    margin-bottom: 0px;
}

.result-text {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24pt;
    margin-left: 4px;
}

#romaji-text {
    font-size: 16pt;
    width: 304px;
}

.translation-header {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 12pt;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #047704;
    color: #F8BB76;
    padding: 4px;
    height: 34px;
    line-height: 30px;
}

.translation-container {
    border-style: solid;
    border-width: 1px;
    width: 300px;
    background-color: #EDEAE7;
    margin-top: 10px;
}

#top-bar {
    background-color: #047704;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.romaji-kana-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.top-text {
    color: #F8BB76;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}

.translation-header-buttons {
    float: right;
}

a.btn {
    display: inline-block;
    text-align: center;
    touch-action: manipulation;
    width: 30px;
    height: 30px;
    color: #EDEAE7;
    background-color: #047704;
    border-color: #EDEAE7;
    border: 1px solid;
    border-radius: 6px;
    text-decoration: none;
    padding-top: 2px;
    margin-right: 4px;
}

a:hover.btn {
    background-color: #F8BB76;
}

#footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
}

#footer-text {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 10pt;
    color: #777;
    margin-left: 10px;
}


#full-page-wrapper {
    min-height: 100%;
    position: relative;
}