* {
     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: 'courier', serif;
     font-size: 1.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
}

.description {
     font-family: 'courier new', sans-serif;
     font-size: 1rem;
     line-height: 1.5;
}
.theme-LightYellow {
   background: #FFFFE0;
   color: #FF8C00;
}  
.theme-LemonChiffon {
   background: #FFFACD;
   color: #FF4500;
}
.theme-papayawhip {
   background: #FFEFD5;
   color: #FF7F50;
}

.img-background {
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     color: #fff;
}

.img-background--memproruki {
     background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://raw.githack.com/Huhanochka/practika-bebebe/08f78b0aebf188957b06f6bb00c348a055af955f/732898e8-39e4-4221-a97f-282092b2ba22.jpg');
}

.img-background--smotrit {
     background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://raw.githack.com/Huhanochka/practika-bebebe/08f78b0aebf188957b06f6bb00c348a055af955f/smotrit.jpg');
}

.img-background--glupenkost {
     background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://raw.githack.com/Huhanochka/practika-bebebe/6743d3051dff699b6843373dd258eb3eb64e08be/glupenkost.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     color: #fff;
}