html {
    background: #111827;
    color: #FFFFFF;
    font-family: 'Oxanium', sans-serif;
    user-select: none;
}

body, header, footer {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#app-container {
    margin: 25px 0;
    height: 725px;
    width: 95%;
    max-width: 1000px;
    border: 2px solid #CCCCCC;
    border-radius: 6px;
    box-shadow: 0 0 10px rgb(83, 83, 83);
    overflow: hidden;
}

/* INPUT SECTION */
#input-section, #results-section {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#input-section {
    background: #6943FF;
    height: 40%;
}

#js-input-section__box {
    width: 40%;
    max-width: 200px;
    height: 30%;
    color: #FFFFFF;
    font-size: 225%;
    font-weight: bold;
    text-align: center;
    background-color: #6943FF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-shadow: 0 0 2px #CCCCCC;
}

input::-webkit-outer-spin-button, ::-webkit-inner-spin-button {
    display: none;
}

#js-input-section__convert-btn {
    font-family: 'Oxanium', sans-serif;
    font-size:large;
    margin-top: 25px;
    padding-top: 5px;
    width: 40%;
    max-width: 200px;
    height: 15%;
    max-width: 200px;
    max-height: 60px;
    box-shadow: 0 0 5px black;
    border-radius: 6px;
}

#js-input-section__convert-btn:hover {
    box-shadow: 0 0 3px black;
}
/* INPUT SECTION END */

/* RESULTS SECTION */
#results-section {
    height: 60%;
    background: #1F2937;
    border-top: 1px solid black;
    box-shadow: 0 0 10px black;

}

.results-section__display {
    width: 75%;
    max-width: 900px;
    background: #273549;
    margin: 12px 0;
    border-radius: 8px;
    box-shadow: 0 0 2px black;
}

.results-section__display--title {
    color: #CCC1FF;
}

.results-section__display--subtitle {
    color: #CCCCCC
}
/* RESULTS SECTION END */

/* END */