* {
     box-sizing: border-box;
}
body {
     background: #1c1e22;
     color: #fff;
}
.support-warning {
     background: #ccb11c;
     color: #000;
     display: block;
     font-family: 'Raleway', sans-serif;
     font-weight: 700;
     opacity: 0.95;
     padding: 3rem;
     position: fixed;
     text-align: center;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 5;
}

.support-warning a {
     color: inherit;
}
.l-grid {
     display: flex;
     flex-wrap: wrap;
}

.l-grid > .l-grid__item {
     flex: 1 0 auto;
}

.l-grid--4x4 > .l-grid__item {
     width: 25%;
}

@supports(display: grid) {
     .support-warning {
          display: none;
     }
	  .l-grid--4x4 > .l-grid__item {
         width: auto;
     }
     
     .l-grid {
          display: grid;
     }
}
.l-grid--4x4 {
     grid-template-columns: repeat(4, 1fr);
     grid-template-rows: repeat(3, minmax(13rem, 1fr));
}

.l-span-column-2 {
     grid-column-start: span 2;
}

.l-span-row-2 {
     grid-row-start: span 2;
}

.l-full-height {
     min-height: 100vh;
}

.align-center {
     align-items: center;
     justify-content: center;
}

.content {
     padding: 3.5rem;
     max-width: 400px;
}
.heading {
     font-family: 'Georgia', serif;
     font-size: 1.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
}

.description {
     font-family: 'Arial', sans-serif;
     font-size: 1rem;
     line-height: 1.5;
}

.theme-eggshell {
background: #e4e3d3;
color: #ffffff;
}

.img-background {
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     color: #fff;
}
.img-background--forest {
     background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSe7KQC-e8EZr_qZtN1wCSUcw9mCUyde6nOkQ&s');
}

.img-background--moss {
     background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://www.marthastewart.com/thmb/UlQvqPs9NqmFqHyW3ZHEZfWRH6A=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/moss-lead-getty-0723-ae32a968a5b74afd85d65a6cd0cab3b8.jpg');
}

.img-background--mist {
     background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://78.mchs.gov.ru/uploads/resize_cache/news/2022-03-14/v-sankt-peterburge-ozhidaetsya-tuman_164725414633216250__2000x2000.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     color: #fff;
}

.theme-asparagus {
background: #6d9f71;
color: #ffffff;
}

.theme-darkspringgreen {
background: #337357;
color: #ffffff;
}
