html,
body {
    margin: 0;
    padding: 0;
    background: rgb(0, 2, 16);
    background: radial-gradient(circle, rgb(0, 0, 0) 0%, rgb(24, 0, 0) 100%);
    color: #e6e6e6;
    font-family: monospace;
    /* font-size: 17px; */
}

.header {
    padding: 10px;
    color: red;
    font-size: 19px;
}

.block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 450px;
    width: 100%;

}

.block_1 {
    /* border: 1px solid #fff; */
    background-color: #2c13134a;
    border-radius: 10px;
    overflow: hidden;
    position:relative;
    margin: 5px 5px 5px 5px;
    padding: 10px;

    width: 316px;
    min-height: 92px;
}

.block_heigh{
    height:auto;
}

@media (max-width: 785px) {

    .header {
        font-size: 16px;
    }

}
@media (max-width: 690px) {


.block_1{
    width: 100%;

}

    .header {
        font-size: 14px;
    }

}
@media (max-width: 530px) {
    .header {
        font-size: 11px;
    }

}

a {
    color: #fff;
}

p{
    margin: 0;
    padding: 0;
}

td {
    min-width: 130px;
}

button {
    font-family: monospace;
    color: rgb(69, 69, 255);
    background: none;
    border: none;
    cursor: pointer;
}
.non {
    color: rgb(255, 0, 0);
    text-shadow: 0 0 7px #f11, 0 0 21px #f11, 0 0 42px #f11, 0 0 82px #f11;
}

.nn {
    color: rgb(255, 0, 0);
    text-shadow: 0 0 7px #ff3737, 0 0 21px #ff3737, 0 0 42px #ff3737;
    animation: pulsate_r 0.5s ease-in-out infinite alternate;
}

@keyframes pulsate_r {
    0%, 100% {
        text-shadow: 0 0 6px #ff4d00, 0 0 15px #ff0000, 0 0 25px #ff0000, 0 0 35px #ff0000, 0 0 45px #ff0000, 0 0 55px #ff0000, 0 0 65px #ff0000;
    }
}

.nm {
    color: #11ffdb;
    text-shadow: 0 0 7px #11ffdb, 0 0 21px #11ffdb, 0 0 42px #11ffdb;
    animation: pulsate 0.5s ease-in-out infinite alternate;
}

@keyframes pulsate {
    0%, 100% {
        text-shadow: 0 0 6px #fff, 0 0 15px #11ffdb, 0 0 25px #11ffdb, 0 0 35px #11ffdb, 0 0 45px #11ffdb, 0 0 55px #11ffdb, 0 0 65px #11ffdb;
    }
}
