.illuminati{
position: absolute;
visibility: hidden;
}
Text
@supports (display: grid) {
div {
display: grid;
}
}
@supports not (display: grid) {
div {
display: flex;
}
}
Need to create a consistent margin in between 2+ elements stacked on top of each other
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
Putting two items next to each other with a consistent gap in between
display: grid;
gap: 1rem;
grid-template-columns: auto 1fr;
Create a responsive grid of content that doesn't break the column boundaries
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));