
/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}
.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.section {
    width: 35%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
    text-align: center;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin: 10px 0;
}
a {
    text-decoration: none;
    color: #3498db;
}
a:hover {
    text-decoration: underline;
}
.registro-container{
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 40%;
    text-align: center;
}
.base-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    margin: 2;
}
/*Menu*/
nav {
    background-color: #9400D3;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 30px;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    text-align: center;
}

/* Capitulos */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.capitulo {
    width: 18%; /* Ajuste a largura para ocupar 18% do espaço */
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center; /* Centraliza o texto */
}
a {
    text-decoration: none;
    color: #3498db;
}
a:hover {
    text-decoration: underline;
}
.voltar {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    text-align: center;
    background-color: #4B0082;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    width: 200px; /* Largura do botão */
}
.voltar:hover {
    background-color: #2980b9;
}
@media (max-width: 1024px) {
    .capitulo {
        width: 23%; /* Reduz a largura para 23% em telas menores que 1024px */
    }
}
@media (max-width: 768px) {
    .capitulo {
        width: 45%; /* Reduz a largura para 45% em telas menores que 768px */
    }
}
@media (max-width: 480px) {
    .capitulo {
        width: 100%; /* A largura é 100% em telas muito pequenas */
    }
}

/*Versiculo*/

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
th {
    background-color: #4B0082;
    color: white;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
.button-container {
    text-align: center;
    margin-top: 20px;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #4B0082;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.button:hover {
    background-color: #2980b9;
}
.footer-container {
    background-color: #808080;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 30px;
    text-align: center;
    color: #fff;
}