body,html{
    padding:  0;
    margin: 0;
    font-family: system-ui, sans-serif;
    color: #fff;
}

.container{
    display: grid;
    grid-template-columns: 20px repeat(4, 1fr) 20px;
    /* grid-template-rows: [search] 1fr [phonemeSettings] 1fr [wordSettings] 1fr [phoneme] 6fr  [productInfo] 40px; */
    grid-template-rows: [search] 1fr [phoneme] 6fr [settings] 1fr [productInfo] 40px;
    min-height: 100vh;
    max-height: 100vh;
    background-repeat: repeat;
    background-color: #464646;
    background-size: cover;
}

.searchBar, .phonemeSettings, .wordSettings, .versionInfo, .productLink{
    display: flex;
    justify-content: center;
    align-items: center;
}

.text{
    background-color: bisque;
    font-size: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkblue;
    font-family: system-ui, sans-serif;
    margin: -2px;
}

button{
    background: linear-gradient(#fff, #ddd);
    border: 1px solid #ccc;
}

.productLink{
    color: white;
}

lb{
    text-shadow: 0px 0px 5px #000;
    padding: 5px 0px;
}

.searchButton{
    font-size: 100%;
    min-height: 42%;
    min-width: 10%;  
    border-left: 0px;
}

.playButton{
    font-size: 70%;
    min-height: 4%;
    min-width: 5%;
    padding: 15px 15px;
    border-color: #bbb;
}

.phonemeSettings, .wordSettings{
    flex-direction: column
}

.searchInput{
    font-size: 29px;
    min-height: 38%;
    min-width: 24%;
    max-width: 30%;
    border: 1px solid #ccc;
    font-family: system-ui, sans-serif;
}

.voiceInput{
    font-size: 20px;
    min-height: 25%;
    min-width: 60%;
    max-width: 60%;
}

.slider{
    min-width: 60%;
    max-width: 60%;
}

.searchBar{
    grid-column: 2/ span 4;
    grid-row: search;
}

#installButtonView{
    grid-column: 5/ span 1;
    grid-row: search;
    display: flex;
    justify-content: center;
    align-items: center;
}

#installButton{
    width: 50%;
    height: 50%;

    color: #fff;
    font-family: system-ui, sans-serif;
    cursor: pointer;
    background: rgba(100,100,100,0.3);
}

.phonemeSettings{
    grid-column: 2/ span 2;
    grid-row: settings;
}

.wordSettings{
    grid-column: 4/ span 2;
    grid-row: settings;
}

.wordView{
    grid-column: 2/ span 1;
    grid-row: phoneme;
}

.playButtonView{
    grid-column: 5/ span 1;
    grid-row: phoneme;
}

.phonemeView{
    grid-column: 3/ span 2;
    grid-row: phoneme;
}

.versionInfo{
    grid-column: 2/ span 1;
    grid-row: productInfo;
}

.productLink{
    grid-column: 5/ span 1;
    grid-row: productInfo;
}

.u { background-color:#ff9900;}

.u- { background-color:#FF0000;}

.u-- { background-color:#00FF00;}