@media screen and (max-width: 1007px) {
    .site-main {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 100px);
    }

    .site-main > article:nth-child(4) > .entry-header,
    .site-main > article:nth-child(5) > .entry-header,
    .site-main > article:nth-child(6) > .entry-header,
    .site-main > article:nth-child(10) > .entry-header,
    .site-main > article:nth-child(11) > .entry-header,
    .site-main > article:nth-child(12) > .entry-header {
        display: flex;
        justify-content: flex-end;
    }

    .site-main > article:nth-child(7) > .entry-header,
    .site-main > article:nth-child(8) > .entry-header {
        display: flex;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .site-main {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(12, 100px);
    }

    .site-main > article > .entry-header {
        display: flex !important;
        justify-content: center !important;
    }

    .pink {
        font-size: 130%;
        font-weight: 600;
        font-stretch: 300%;
        letter-spacing: 3px;
        transition: 0.1s;
    }
    
    .green {
        font-size: 90%;
        font-weight: bold;
        font-stretch: 20%;
        letter-spacing: 3px;
        transition: 0.1s;
    }
    
    .violet {
        font-size: 150%;
        font-weight: bold;
        font-stretch: 20%;
        letter-spacing: 3px;
        transition: 0.1s;
    }

    .post-title {
        text-align: center;
        width: 100% !important;
    }
    
}

@media screen and (max-width: 540px) {
    .site-main {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(12, 70px);
    }

    .modal, .ninoBulling {
        min-width: 90%;
    }
}