/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
}

.logo{
    width: 120px;
    height: 45px;
}
main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.hero{
    display: inline-block;
    
    
}

.post-list {
    flex: 2;
}

/* Estilos para las publicaciones */
.post {
    background-color: #f9f9f9;
    margin-bottom: 20px;
    padding: 20px;
}

.post h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.post p {
    font-size: 16px;
}

.sidebar {
    flex: 1;
    background-color: #f0f0f0;
    padding: 20px;
}

/* Estilos para el pie de página */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
