html, body {
    margin: 0px;
    padding: 0px;
    background-color: black;
}

#content {
    width: 300px;
    background-color: #9b9b9b;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: 10px;
}

#japanese-text {
    font-size: 30pt;
    text-align: center;
    height: 60px;
    line-height: 60px;
}

#romaji-text, #translation-text {
    font-size: 16pt;
    min-height: 18pt;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button {
    background-color: #075f0b;
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12pt;
    width: 120px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 12px;
}

button:active {
    background-color: green;
}

#button-bar {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
}

#options-background {
    display: none; /* hidden initially */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

#options-dialog {
    background-color: #9b9b9b;
    margin: 20px auto; /* 20px from the top and centered */
    width: 200px;
    text-align: center;
    min-height: 140px;
    padding-top: 10px;
    border: 2px solid white;
}
