*{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
body{
    background: rgb(97, 96, 96);
    overflow-x: hidden;
}
.invisible{
    display: none;
}
header{
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    width: 100vw;
    color: aqua;
    font-size: 3em;
    padding:  .5em 0;
    background: rgb(26, 25, 25);
}
.logo{
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: .7em;
    padding: 0%;
}
.logo span{
    border-bottom:3px solid  aqua;
    cursor: pointer;
}
@media (max-width: 967px) {
    .logo span{
        display: none;
    }   
    .logo img{
        display: none;
   }
   header{
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 100vw;
    color: aqua;
    font-size: 1.5em;
    padding:  .5em 0;
    background: rgb(26, 25, 25);
}
}
@media (max-width: 500px) {
    .logo span{
        display: none;
    }   
    .logo img{
        display: none;
   }
   header{
    height: 8vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    align-content: center;
    width: 100vw;
    color: aqua;
    font-size: .8em;
    padding:  .5em 0;
    background: rgb(26, 25, 25);
}
}

.logo img{
    height: 2.7em;
}
header select{
    border:2px solid  aqua;
    background-color: rgb(26, 25, 25);
    font-size: .8em;
    color: aqua;
    text-align: center;
    outline: aqua; 
    padding-right:0 .3em;
}
header select:hover{
    cursor: pointer;
    background-color: rgb(51, 51, 51);
}


header button{
   
    border:3px solid  aqua;
    background-color: rgb(26, 25, 25);
    font-size: .7em;
    color: aqua;
    align-content: center;
    outline: aqua; 
    padding:0.10em .5em ;
}
header button:hover{
    color: rgb(0, 255, 255);
    background: rgb(104, 103, 103);
}

.text{
    margin: 0 auto;
    width: 92vw;
    min-height: 80vh;
    margin-bottom: 3em;
    display: flex;
    justify-content: start;
    flex-direction: column;
}
#Title{
    color: aqua;
    background: rgb(97, 96, 96);
    font-size: 3.5em;
    font-weight: bolder;
    padding:  .3em .5em ;
}
.lineVerse{
  display: flex;
  justify-content: start;
}
.verseNumber{
  display: flex;
  flex-direction:column ;
  font-size: 1.6em;
  width: 3em;
  text-align: center;
  justify-content: center;
  width: 2em;
  color: rgb(0, 252, 252);
}
p{
    font-size: 1.7em; 
    color: rgb(247, 248, 248);
    font-weight: 400;
    padding-bottom: .4em;
    width: 90%;
    border-bottom: 2px solid rgba(0, 184, 240, 0.432);
}

.empty{
    margin: 0 auto;
    align-self: center;
    top: 50%;
    transform: translateY(-50%);
    height: 30em;
    position: absolute;
}

.loading{
    background: #000;
    animation: loading 10s ease-in-out infinite;   
}

@keyframes loading {
    5%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 0%,#000);
    }
    15%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 15%,#000);
    }
    25%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 30%,#000);
    }
    40%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 40%,#000);
    }
    50%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 50%,#000);
    }
    60%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 60%,#000);
    }
    75%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041)70%,#000);
    }
    100%{
        background: linear-gradient(111deg,rgb(20, 20, 20),rgba(105, 150, 161, 0.041) 95%,#000);
    }
    
}