html, body {
	background: url('./images/fondo.avif') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Header */
.header img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Menu */
.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #000;
    padding: 10px;
    margin: 0;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.menu ul li a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

/* Sidebars */
.sidebar {
    width: 20%;
    background-color: rgba(247, 209, 247, 0.2);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sidebar .title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    background-color: rgba(247, 209, 247, 0.2);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  	width: 70%;
}

.main-content .title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
}

.postc {
    background-color: rgba(55, 34, 63, 0.20); /* Fondo blanco semi-transparente */
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px;
}

.postc-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.postc-content {
    font-size: 14px;
}

.postc-content img {
    display: block;
    margin: 0 auto 10px auto; /* Centrar la imagen horizontalmente y añadir margen inferior */
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.postd {
    background-color: rgba(247, 209, 247, 0.2); /* Fondo blanco semi-transparente */
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px;
}

.postd-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.postd-content {
    font-size: 14px;
}

.postd-content img {
    display: block;
    margin: 0 auto 10px auto; /* Centrar la imagen horizontalmente y añadir margen inferior */
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
