
* {
     box-sizing: border-box;
}

body {
     background: #ffffff;
     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: 'Arial', serif;
     font-size: 1.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
}

.description {
     font-family: 'Garamond', sans-serif;
     font-size: 1rem;
     line-height: 1.5;
}
.theme-jet {
   background: #353238;
   color: #ffffff;
}
.img-background {
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     color: #fff;
}
.img-background--pionsdark {
     background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://i.pinimg.com/564x/20/6f/86/206f86b736f64223afad16cc742f0176.jpg');
}
.img-background--pionspink {
     background-image: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://i.pinimg.com/564x/e7/a8/2a/e7a82a77c08339f68ebc14ed416a4340.jpg');
}

.img-background--pions {
     background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://i.pinimg.com/564x/53/89/61/538961ea60183c4d9c0ebeec08578a22.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     color: #fff;
}
.theme-bittersweetdhimmer {
   background: #B85454;
   color: #ffffff;
}
.theme-pastelpink {
   background: #E8ACAC;
   color: #ffffff;
}