.noob_grid {
    background: #fff;
    display: grid;
    grid-gap: 10px;
}
.noob_grid .col {
    background-color: #b4f29d;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: bold;
    padding: 5px;
    font-size: 20px;
	height:100px;
	background-repeat: no-repeat;
}
.noob_grid.template-3 {
    grid-template: repeat(2, 1fr)/repeat(2, 1fr);
}
.noob_grid a {
    color: #ffffff; /* Цвет ссылки */
}
.noob_shadow {
	display: inline;
	background-color: rgba(0, 0, 0, 0.5);
	box-shadow: -10px 0 0 rgba(0, 0, 0, 0.5), 10px 0 0 rgba(0, 0, 0, 0.5);
	line-height: 25px;
}