
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
}


.verse-container {

    padding: 40px;
    width: 600px;
    background-color:  rgba(55, 43, 81, 1);
    text-align: center;
    border-radius: 10px;
}



#verse {
    font-size: 20px;
    margin: 10px;
    border-left: none;
}

button {
    padding: 10px;
    border-radius: 60px;
    background-color: rgb(255, 255, 255);
    outline: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgb(0, 0, 0);
}