.titulo {
    font-size: 70px;
    color: #FF5800;
    text-align: center;
}

.subtitulo {
    font-size: 1.5em;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.portada {
    display: block;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.contenido {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    height: auto;
    margin-left: 20%;
    margin-right: 20%;
}

.fecha {
    font-size: 0.9em;
    color: #999;
    text-align: center;
}

.mensaje {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 36%;
}

.contenedor {
    overflow: hidden;
    margin-bottom: 1%;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animar {
    opacity: 0;
    animation: slideIn 2s forwards;
}

.entrada .titulo,
.entrada .subtitulo,
.entrada .portada,
.entrada .contenido,
.entrada .fecha,
.entrada .mensaje {
    animation: slideIn 1s forwards;
}

.entrada .titulo {
    animation-delay: 1s;
}

.entrada .subtitulo {
    animation-delay: 1s;
}

.entrada .portada {
    animation-delay: 1s;
}

.entrada .contenido {
    animation-delay: 1s;
}

.entrada .fecha {
    animation-delay: 1s;
}

.entrada .mensaje {
    animation-delay: 1s;
}

.mas {
    align-items: center;
    margin-bottom: 4%;
    margin-left: 63%;
}

#vermas {
    background: #ff5800;
    margin-top: 20px;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
    margin-left: 46%;
}

@media (max-width: 768px) {
    .entrada {
        width: 90%;
        padding: 15px;
    }

    .titulo {
        font-size: 50px;
    }

    .subtitulo {
        font-size: 1.2em;
    }

    .contenido,
    .mensaje {
        font-size: 0.9em;
        margin-left: 0;
        margin-right: 0;
        padding: 0 10px;
        text-align: center; /* Centra el texto para mejor legibilidad */
        height: auto; /* Permite que el texto ocupe el espacio necesario */
    }

    .mensaje {
        margin-left: 0;
        text-align: center;
    }

    .mas {
        margin-left: 20px;
        text-align: center;
    }

    .portada {
        display: block;
        max-width: 100%; /* Asegura que la imagen ocupe el ancho completo del contenedor */
        height: auto;
        margin: 0 auto;
        border-radius: 8px;
        transition: transform 0.3s ease-in-out; 
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 40px;
    }

    .subtitulo {
        font-size: 1em;
    }

    .contenido,
    .mensaje {
        font-size: 0.8em;
        margin-left: 0;
        margin-right: 0;
        padding: 0 5px;
        text-align: center; /* Centra el texto para mejor legibilidad */
        height: auto; /* Permite que el texto ocupe el espacio necesario */
    }

    .mensaje {
        margin-left: 0;
        text-align: center;
    }

    .mas {
        text-align: center;
        margin-left: 18px;
    }
}
