/* style.css */
.tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width:100%;
    margin:auto;
    justify-content:center;
}
table{
    margin: 0 auto;
}
tr {
    border: 0px solid grey;
}
td{
    vertical-align:top;
    min-width:10px;
}
tr{
    height:100%;
}
.tile {
    flex: 1 0 300px;
/*    background-color: #eee;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    min-width:475px;
    max-width:600px;
    }

.tile:hover {
    transform: scale(1.05);
}

.tiles-title {
    color: #D92222;
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

@media (max-width: 767px) {
    .zoomout_page{
        zoom: 0.6; 
        -moz-transform: scale(0.6); 
        -moz-transform-origin: 0 0;
    }
    div.post-title {
        font-weight: bold;
        font-size: 100%;
        padding: 9px;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
    }
}

.post-content {
    padding:5px;
    align-content:center;
}
.post-title {
    font-weight: bold;
    font-size: 150%;
    padding: 9px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
