.last-information-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 250px 1fr;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem;
}

.title-nt {
    animation: neon-shadow 1s infinite alternate;
}



@keyframes neon-shadow {
    0% {
        text-shadow: 0 0 15px rgba(255, 255, 255, .2);
    }

    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, .8);
    }
}

@keyframes neonboxShadown {
    0% {
        box-shadow: -5px 0 10px 0 rgba(157, 40, 116, 0.9);
    }

    33% {
        box-shadow: 0 -5px 10px 0 rgba(157, 40, 116, 0.9);
    }

    66% {
        box-shadow: 5px 0 10px 0 rgb(157, 40, 116, 0.9);
    }

    100% {
        box-shadow: 0 5px 10px 0 rgba(157, 40, 116, 0.9);
    }
}



.content-img-nt {
    grid-row: 2;
    width: 100%;
}

.content-img-nt img {
    width: 100%;
    height: auto;
    animation: neonboxShadown 3s alternate infinite;
}

.nt-info {
    grid-row: 3;
    text-align: justify;
    align-self: center;
    font-size: 1em;
}

.nt-info p {
    line-height: 1.5;
}

.jumbotron-blog {
    width: 100%;
    box-sizing: border-box;
    background: rgba(53, 53, 53, 1);
    padding: 2em 0;
}

.all-blogposts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-gap: 15px;
    justify-content: center;
    padding: 2em 0;
}

.grd-cl {
    background: linear-gradient(rgba(53, 53, 53, 1) 0%, rgba(27, 36, 51, 1) 150px);
    color: #fff;
}

.all-blogposts .card:hover {
    transition: .2s;
    animation: neonboxShadown 3s infinite alternate;
}

.title-blog {
    text-align: center;
    justify-self: center;
    font-size: 2.5em;
}


@media only screen and (min-width: 769px) {
    .last-information-container {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr;
    }

    .content-img-nt {
        grid-column: 1;
        grid-row: none;
    }

    .nt-info {
        grid-column: 2;
        grid-row: none;
    }

    .content-img-nt img {
        width: 85%;
    }
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 768px) {
    .last-information-container {
        grid-template-columns: 1fr;
        grid-template-rows: 70px 2fr 1fr;
    }
}

@media only screen and (max-width: 480px) {
    .last-information-container {
        grid-template-rows: 50px 1fr 1fr;
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 320px) {
    .last-information-container {
        font-size: .7em;
    }
}