body {
    font-family: 'Arial', sans-serif;
    background: url('paisaje.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    text-align: center;
    background-color: #333;
    padding: 20px;
    border-bottom: 4px solid #444;
    margin-bottom: 20px;
}

.site-title {
    color: #ffffff;
    font-size: 2.5em;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
}

.site-nav {
    margin-top: 15px;
   
}

.site-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.site-nav ul li {
    display: inline;
    margin: 0 10px;
}

.site-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1em;
    font-family: 'Courier New', Courier, monospace;
    padding: 5px 10px;
    background-color: #555;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.site-nav ul li a:hover {
    background-color: #666;
    color: #ffcc00;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post {
    background-color: rgba(44, 47, 51, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: calc(50% - 20px); /* Ajuste para el espacio entre columnas */
    box-sizing: border-box; /* Asegura que el padding y el borde se incluyan en el ancho total */
}

.post img.post-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    border-radius: 5px;
}

.post h2 {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.date {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ffcc00;
}

.post p {
    margin-bottom: 15px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #f5f5f5;
}

.read-more {
    display: inline-block;
    background-color: #555;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, color 0.3s;
}

.read-more:hover {
    background-color: #666;
    color: #ffcc00;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .post {
        width: 100%; /* Ajuste a una sola columna en pantallas más pequeñas */
    }
}



#esti{
    font-family: Tahoma,sans-serif 
}


