body {
    background-color: #f0f2f5;
}

.header-bar {
    background-color: #5a3b73;
    height: 200px;
    padding: 30px;
    color: #fff;
}

.main-container {
    padding: 20px;
}

.post-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #615c62; /* */
}

.post-content img {
    float: left; /* Imagen flotante a la izquierda */
    width: 100%;
    max-width: 600px; /* Ancho máximo de la imagen */
    height: auto; /* Mantiene la relación de aspecto */
    margin-right: 20px; 
    margin-bottom: 5px;
    border-radius: 8px;
}

.post-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.clear {
    clear: both; /* Evita que el contenido siguiente flote alrededor de la imagen */
}

.footer {
    background-color: #02274f;
    color: white;
    padding: 40px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.breadcrumb {
    background-color: transparent;
}