/* Bible styles */
.bible {
    font-size: large;
    width: 50%;
}

.bible>h1 {
    text-align: center;
}

@media screen and (max-width: 920px) {
    .bible {
        font-size: large;
        width: 75%;
    }
}

/* Button styles */
.copy {
    border: none;
    background-color: darkcyan;
    color: white;
    padding: 15px 20px;
    float: right;
    cursor: pointer;
    border-radius: 5px;
}

.copy:hover {
    background-color: rgb(1, 105, 105);
}

.body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
}

.body>* {
    margin-bottom: 2vh;
}
