body {
    margin: 0;
    font-family: Georgia, serif;
    background-image: url("fondo.jpg");
    background-size: cover;
    background-position: center;
}

/* 3 COLUMNAS */
.layout {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* LATERALES */
.sidebar {
    flex: 1;
    background-color: rgba(255, 182, 193, 0.6);
    padding: 15px;
    text-align: center;
}

/* CENTRO BLOG */
.main {
    flex: 2;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
}

/* POSTS */
.post {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid pink;
}

/* INSTAGRAM CARDS */
.ig-card {
    background-color: rgba(255, 255, 255, 0.6);
    margin: 10px 0;
    padding: 10px;
    border-radius: 12px;
}

.ig-card a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* TITULOS */
h1 {
    text-align: center;
}
