body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Baskerville;
}

#prayer-container {
    /* width: 50rem; */
    margin: 0 auto 20px;
    /* background: #fff; */
    background:#F6F4EE;
    /* border: solid 5px #38342b; */
    border-radius: 10px;
}

#prayer-menu {
    background: #efefef;
    padding: 10px;
    /* position: relative; */
    height: 6rem;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 10px 10px 0 0;
}

#prayer-player {
    position: absolute;
    top: 0.9rem;
    /* left: 35%; */
    width: 23rem;
}

#prayer-content {
    padding: 30px;
    min-height: 300px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Nunito Sans', serif;
}

#footer {
    background: #ccc;
    color: #333;
    font-size: 11px;
    padding: 10px;
    text-align: center;
}

.word-data {
    -x-background: #ffffee;
}

.current-word {
    background: yellow;
    outline: solid 2px yellow;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.current-word2 {
    background: yellow;
    outline: solid 2px yellow;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.aligned-word:hover {
    /* cursor: pointer; */
    background: #FEFFDC;
}

p {
    margin: 0.5rem 0;
}

.audioHint {
    color: red;position: absolute;top: 3rem;font-family: 'Nunito Sans', serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    #prayer-player {
        width: 17rem;
    }
    .audioHint {
        font-size: 0.9rem !important;
    }
}