@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Crimson Text", serif;
}

img{
    width: 100%;
}

h1{
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
}

h2{
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    padding: 3rem 0;
}

h3{
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 2rem;
}

h4{
    font-size: 1.3rem;
    color: #800000;
    padding: 2rem 0;
    text-align: center;
}

p{
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
}

span{
    font-weight: 700;
}

a{
    text-decoration: none;
}

.separador{
    display: flex;
    justify-content: center;
}

.separador img{
    width: 300px;
    padding-bottom: 3rem;
}

.separador2{
    display: flex;
    justify-content: center;
}

.separador2 img{
    width: 300px;
    padding-top: 3rem;
}

.portada {
    background-color: #000002;
    display: flex;
    justify-content: center;
}

.portada img {
    max-width: 350px;
}

.portada-gris {
    background-color: #231f20;
    display: flex;
    justify-content: center;
}

.portada-gris img {
    max-width: 500px;
}

.portada-sola {
    background-color: #000002;
    display: flex;
    justify-content: center;
}

.portada-sola img {
    max-width: 500px;
}

.contenidos{
    padding: 3rem 1rem;
}

.contenidos h3{
    text-align: center;
}

.personajes{
    padding: 3rem 1rem;
    text-align: center;
}

.personajes h3{
    padding: 1rem;
}

.cronologia, 
.contexto, 
.resumen,
.autores {
    padding: 1rem 10rem;
}

.resumen ul{
    font-size: 1.1rem;
    font-weight: 500;
}

.autores h3{
    padding-bottom: 0;
}

/* boton glosario */
.glorasio {
    background-color: #231f20;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    font-family: "Crimson Text", serif;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    background-color: #b4222a;
    border-radius: 40px;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}
  
.btn:hover {
    background-color: #e04d2c;
}

/* boton album */
.album {
    background-color: #000002;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.btn-album {
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    font-family: "Crimson Text", serif;
    font-weight: 500;
    white-space: nowrap;
    background-color: #b4222a;
    border-radius: 30px;
    transition: 0.3s;
    cursor: pointer;
}
  
.btn-album:hover {
    background-color: #e04d2c;
}

@media screen and (max-width: 768px){
    .contenidos{
        padding: 1rem;
    }

    .cronologia, 
    .contexto, 
    .resumen,
    .autores {
        padding: 1rem 2rem;
    }
}