a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.novelas-container {
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    margin-bottom: 30px;
}

.novela-item {
    width: 200px;
    background-color: #000000a8;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}

.novela-portada {
    width: 180px;
    height: 240px;
    margin-top: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.novela-portada.lagrimas {
    background-image: url('../../images/portada-sticky.png');
}

.novela-portada.zarza {
    background-image: url('../../images/portada-zarza.png');
}

.novela-portada.paris {
    background-image: url('../../images/portada-paris.png');
}

.novela-portada.campanas {
    background-image: url('../../images/portada-campanas.png');
}

.novela-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    height: 50px;
    margin-top: 10px;
}

.novela-link {
    width: 100px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 50px;
    text-align: center;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}

.container-relatos {
    margin-top: 20px;
    margin-left: 20%;
    background:rgba(0,0,0,0.6);
    border-radius: 10px;
    width: 60%;
    height: 70%;
    text-align: left;
    padding: 15px;
}

.text-relatos {
    color: #ffffff;
    font-size: 20px;
    margin-top: 10%;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .text-relatos {
        font-size: 14px;
    }

    .container-relatos {
        margin-left: 10%;
        width: 80%;
    }
}