*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', 'sans-serif';
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: url(imagenes/library.jpg) no-repeat center center/cover;
}

.contenido-centrado{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.contenedor{
    width: 80vh;
    max-width: 600px;
    min-height: 500px;
    padding: 20px;
    background-color: white;
    border: 5px solid black;
    border-radius: 30px;
}

.contenedor-interno{
    width: 80%;
}

#titulo{
    width: 100%;
    font-weight: bold;
    text-align: center;
    font-family: "Courgette", cursive;
    font-weight: 400;
    font-style: normal;
}

#cita{
    font-size: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

#autor{
    width: 100%;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Courgette', cursive;
}

#boton-cambiar-cita{
    width: 180px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    justify-content: center;
}

