@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Oswald:wght@200;300&display=swap');
:root {
  --primary-color: #e9f0fc;
  --secondary-color: #fffff7;
  --tertiary-color: #030813;
  --quaternary-color: #08142d;
  --quinary-color: #0073e6;
  --text-color: hsla(210, 50%, 85%, 1);
  --shadow-color: hsla(210, 40%, 52%, 0.4);
  --bg-color: #141218;
  --expanded: 100%;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  --text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
  --text-shadow-light: 0 2px 4px rgba(255, 255, 255, 0.4);
  --transition-in: all 0.2s ease-out;
  --transition-out: all 0.4s ease-in;
  --filter-drop-shadow: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  --backdrop-filter: blur(2.5px);
  --border-radius: 0.4rem;
  --border-radius-circle: 50%;
  --box-shadow-card: 0 2.8px 2.2px rgba(0, 115, 230, 0.034),
    0 6.7px 5.3px rgba(0, 115, 230, 0.048),
    0 12.5px 10px rgba(0, 115, 230, 0.06),
    0 22.3px 17.9px rgba(0, 115, 230, 0.072),
    0 41.8px 33.4px rgba(0, 115, 230, 0.086),
    0 100px 80px rgba(0, 115, 230, 0.12);
  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-primary-100: hsl(205, 15%, 58%);
  --clr-primary-400: hsl(215, 25%, 27%);
  --clr-primary-800: hsl(217, 33%, 17%);
  --clr-primary-900: hsl(218, 33%, 9%);
}
* {
  font-family: 'Philosopher', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #000;
  text-rendering: optimizeSpeed;
  user-select: none;
  overflow: auto;
  line-height: calc(1em + 0.5rem);
  animation: fadeInAnimation 3s ease-out 1 forwards;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html::-webkit-scrollbar {
  display: none;
}

body,
button,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: pretty;
  color: #fff;
  text-shadow: var(--text-shadow);
  font-size: 1rem;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 2px;
}

ul {
  list-style: none;
  padding: 0;
  text-shadow: var(--text-shadow);
  font-weight: 400;
}
a {
  text-decoration: none;
  color: inherit;
  text-shadow: var(--text-shadow);
  font-weight: 400;
}
.trigger {
  position: fixed;
  display: block;
  top: 2.5rem;
  left: clamp(2.4rem, 3vw, 3.5rem);
}
.pointingHand {
  width: 100%;
  max-width: 67px;
  height: 100%;
  max-height: 35px;
}

.twin p {
  text-align: left;
}

.twin p:last-child {
  text-align: justify;
}

.hyphen {
  hyphens: auto;
  text-justify: auto;
}

/* p,
h6 {
  margin-bottom: 1.5em;
  color: var(--secondary-color);
} */
.list {
  color: var(--secondary-color);
  padding-left: 2rem;
}
.list > ::marker {
  font-size: 0.8rem;
  content: '\f0e7';
  font-family: 'Font Awesome 5 Free';
  color: var(--secondary-color);
  font-weight: 700;
}
.list > li {
  padding-left: 0.5rem;
}
.side-list {
  color: var(--secondary-color);
  padding-left: 1rem;
}
.side-list > ::marker {
  font-size: 0.8rem;
  content: '\f185';
  font-family: 'Font Awesome 5 Free';
  color: var(--secondary-color);
  font-weight: 700;
}
.side-list > li {
  padding-left: 0.4rem;
}

figure {
  margin: 0;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

/*--------------------------------------------------------------
General styling
--------------------------------------------------------------*/

img {
  margin: auto;
  display: block;
  width: 90%;
  height: auto;
}

/* .float {
  filter: var(--filter-drop-shadow);
  animation: up-down 1s infinite alternate;
}

@keyframes up-down {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
} */

/* .electron {
  width: 130px;
  height: 130px;
  filter: var(--filter-drop-shadow);
  animation: spin 6s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(-360deg);
  }
} */
/* .logoPulse {
  width: 130px;
  height: 130px;
  filter: var(--filter-drop-shadow);
  transition: transform 1s ease;
  animation: in-out 1s infinite alternate;
}
@keyframes in-out {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
} */
/* .opacity {
  animation: stretch 1.5s ease-out alternate infinite;
}

@keyframes stretch {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
} */
.trophy {
  filter: var(--filter-drop-shadow);
  max-width: 387px;
  width: 100%;
  max-height: 242px;
  height: 100%;
}

.logoImg {
  filter: var(--filter-drop-shadow);
  border: 1px solid #ccc;
  width: 130px;
  height: 130px;
  border-radius: var(--border-radius);
}
.d3img {
  filter: var(--filter-drop-shadow);
  max-width: 387px;
  width: 100%;
  max-height: 387px;
  height: 100%;
}
.logoImgRnd {
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.5));
  width: 130px;
  height: 130px;
}

/*--------------------------------------------------------------
Header:
--------------------------------------------------------------*/

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 1em;
  display: flex;
  justify-content: space-around;

  text-align: center;
  align-items: center;
  vertical-align: middle;
  max-width: 100%;
  height: 8rem;
  /* background-color: var(--tertiary-color); */
  /* Milk-glass effect */
  background: rgba(0, 7, 27, 0.6);
  /* box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37); */
  backdrop-filter: var(--backdrop-filter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 3;
  font-size: 1rem;
  animation: gm-slidein 3s ease-out;
}

@keyframes gm-slidein {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.site-title,
.site-subtitle,
.content-title {
  font-size: 1.3rem;
  color: #fffff7;
}
.title {
  margin: 0 auto;
}

.title h1,
.title h2 {
  background: linear-gradient(0deg, #03d5ff, #a5f0ff, #ffffff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.site-title {
  font-size: clamp(1.6rem, 2.5vw + 1rem, 3rem);
  opacity: 0;
  animation: fill-in 2s ease-out 2s forwards;
}

.site-subtitle {
  font-size: clamp(1rem, 2.2vw + 1rem, 2.4rem);
  opacity: 0;
  animation: fill-in 2s ease-out 2.5s forwards;
}

@keyframes fill-in {
  100% {
    opacity: 1;
  }
}
/*  Masthead Icons */
.mastGit {
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .mastGit {
    margin-right: 2rem;
  }
}

/* Wrapper */
.masthead .iconButton {
  position: relative;
  display: inline-block;
  font-size: 2.25rem;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 3rem;
  /* margin: 1rem auto; */
  text-align: center;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-circle);
  cursor: url(images/glove2.png), auto;
  transition: var(--transition-out);
}
.masthead .iconButton:hover {
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition-in);
}

.masthead .iconButton i {
  position: absolute;
  left: 52%;
  top: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.masthead .github {
  filter: var(--filter-drop-shadow);
  animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 227, 248, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(217, 227, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 227, 248, 0);
  }
}

/*--------------------------------------------------------------
Navigation: SideNav
--------------------------------------------------------------*/
/*Spinning Text */
.circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: var(--border-radius-circle);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.logo {
  position: absolute;
  height: 140px;
  width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius-circle);
  /* filter: brightness(1.1); */
}

.emblem {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.2vh;
  margin: 0 auto;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  font-weight: bold;
  color: #fff;
  z-index: 1;
  text-align: center;
  letter-spacing: 1px;
  animation: spinZ 20s linear infinite;
}

.emblem > span {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 2vh;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}

@keyframes spinZ {
  0% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

.main-nav {
  min-height: 100%;
  top: 8rem;
  padding: 1rem;
  font-size: 1rem;
  width: 16rem;
  z-index: 6;
  /* background-color: var(--tertiary-color); */
  background: rgba(0, 7, 27, 0.6);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: var(--backdrop-filter);

  border-right: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  overflow-x: hidden;
  transition: all 0.5s ease;
  scrollbar-width: thin;
  scrollbar-color: #022648 #00549a;
}
@media screen and (max-width: 600px) {
  .main-nav,
  .mastGit,
  .pointingHand,
  .bounce {
    display: none;
  }
}
.reactList {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.reactList .sidenavItem {
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 3rem;
  width: 90%;
  padding: 0.3rem;
  padding-left: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  transition: var(--transition-out);
}
.reactList .sidenavItem:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
  cursor: url(images/glove2.png), auto;
  transition: var(--transition-in);
}
.reactList .sidenavItem:last-child {
  margin-bottom: 0.6rem;
}
[data-css-icon] {
  --animdur: 0.3s;
  --loading-animdur: 0.8s;
  --animtf: ease-out;
  --bdw: 2px;
  --bdrs: 50%;
  --bgc: var(--tertiary-color);
  --c: currentcolor;
  --icon-size: 1rem;
  --size: 2.4rem;

  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
[data-css-icon] i {
  align-items: center;
  background-color: var(--bgc);
  border-radius: var(--bdrs);
  box-sizing: border-box;
  display: inline-flex;
  height: var(--size);
  justify-content: center;
  position: relative;
  transition: background-color var(--animdur) var(--animtf);
  width: var(--size);
}
[data-css-icon] i::after,
[data-css-icon] i::before {
  transform-origin: 50% 50%;
  transition: all var(--animdur) var(--animtf);
}

[data-css-icon*='down'] i::after {
  background: transparent;
  border-color: var(--c);
  border-style: solid;
  box-sizing: border-box;
  content: '';
  display: inline-block;
  height: var(--icon-size);
  margin: 0;
  position: relative;
  width: var(--icon-size);
}
[data-css-icon*='down'] i::after {
  border-width: 0 var(--bdw) var(--bdw) 0;
  top: calc(0px - (var(--icon-size) / 4));
  transform: rotate(45deg);
}

[open] > summary > [data-css-icon*='down'] i::after {
  top: var(--bdw);
  transform: rotate(45deg) scale(-1);
}

details {
  width: 14rem;
  height: var(--collapsed);
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
details[open] {
  height: var(--expanded);
}

summary {
  background: var(--tertiary-color);
  border: 1px solid rgb(87, 87, 87);
  border-radius: 3rem;
  color: #fff;
  letter-spacing: 1px;
  list-style-type: none;
  margin: 0.5rem 0;
  outline: none;
  padding-inline-end: 0.5rem;
  padding-inline-start: 1rem;
  user-select: none;
}
summary span:hover {
  cursor: url(images/glove2.png), auto;
}
summary::marker {
  display: none;
}
/* summary::-webkit-details-marker {
  display: none;
} */

summary + * {
  color: #fff;
  padding: 0.5rem;
}

/*------------------------------------------------------
Scroller
------------------------------------------------------*/

.scroller {
  margin: 9rem auto -1rem;
  max-width: 800px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller__inner li img {
  height: 2.4em;
  width: 2.4rem;
}

.scroller[data-animated='true'] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated='true'] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction='right'] {
  --_animation-direction: reverse;
}

.scroller[data-direction='left'] {
  --_animation-direction: forwards;
}

.scroller[data-speed='fast'] {
  --_animation-duration: 20s;
}

.scroller[data-speed='slow'] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.4rem 1rem 0.3rem;
  border-radius: 0.5rem;
  /* background: var(--tertiary-color);
  box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900); */
  background: rgba(0, 7, 27, 0.6);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: var(--backdrop-filter);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/*--------------------------------------------------------------
Cards:
--------------------------------------------------------------*/
/* .main-area {
  padding-bottom: 1rem;
} */

.cards {
  margin: 1rem auto;
  padding: 0;
  list-style-type: none;
}

.cards a {
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.caption {
  padding: 1rem;
  font-size: 80%;
}

.caption-title {
  color: var(--secondary-color);
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4rem;
}

.caption p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
Buttons
----------------------------------------------------------------*/

.btn-group {
  margin-top: 1rem;
}
.btn-block {
  padding: 0.5rem 1rem;
}

.btn,
.badge {
  position: relative;
  background-color: var(--tertiary-color);
  text-transform: uppercase;
  font-size: 13px;
  color: var(--text-color);
  overflow: hidden;
  border: 1px solid rgb(113, 113, 113);
  letter-spacing: 2px;
  outline: none;
  box-shadow: var(--box-shadow-card);
  transition: var(--transition-out);
}

.btn:focus,
.badge:focus {
  outline: none !important;
}

.btn:before,
.badge:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: -1;
  transform-origin: bottom-left;
  transform: translateY(4rem);
  transition: transform 0.4s ease-in;
}
.btn:hover,
.badge:hover {
  background-color: transparent;
  color: #000;
  cursor: url('image/glove2.png'), auto;
}
.btn:hover:before,
.badge:hover:before {
  transform: translateY(0);
  transition: var(--transition-in);
}

/*--------------------------------------------------------------
Sidebar:
--------------------------------------------------------------*/
.sidebar {
  margin-top: 2rem;
}

.twin {
  color: var(--secondary-color);
  text-align: center;
  /* 'Milk-glass' */
  background: rgba(0, 7, 27, 0.6);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: var(--backdrop-filter);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  border-radius: 0.3rem 0 0 0;
}
.twin h1,
.twin p {
  font-size: 1rem;
  font-weight: lighter;
}

.twin:last-of-type {
  background-color: var(--tertiary-color);
  /* 'Milk-glass' */
  background: rgba(0, 7, 27, 0.6);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: var(--backdrop-filter);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
  border-radius: 0 0 0 0.3rem;
}

/*--------------------------------------------------------------
Footer:
--------------------------------------------------------------*/
.footer {
  text-align: center;
  /* width: fit content; */
  padding: 1.2rem 0;
  flex-grow: 1;
  background-color: transparent;
}

.footer .footerScale {
  transform: scale(0);
  transition: var(--transition-out);
}

/* Wrapper */
.footer .iconButton {
  position: relative;
  border-radius: 3rem;
  display: inline-block;
  font-size: 1.4rem;
  height: 3rem;
  width: 3rem;
  margin: 1rem 0.3rem;
  /* Milk-glass */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: var(--backdrop-filter);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: url(images/glove2.png), auto;
  transition: var(--transition-out);
}

.footer .iconButton:nth-child(3) {
  min-width: 8rem;
}

.footer .iconButton #time {
  position: absolute;
  min-width: 10rem;
  padding: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--secondary-color);
  text-align: center;
  letter-spacing: 2px;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
  transition: var(--transition-out);
}

/* Icons */
.footer .iconButton i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-weight: lighter;
  cursor: url(images/glove2.png), auto;
  transition: var(--transition-out);
}
.footer:hover .footerScale {
  transform: scale(1);
  transition: var(--transition-in);
}

.footer .iconButton:hover {
  background-color: var(--secondary-color);
  transition: var(--transition-in);
}
.footer .iconButton:hover i,
.footer .iconButton:hover #time {
  color: var(--tertiary-color);
  transition: var(--transition-in);
}

.impressum p {
  line-height: 50%;
  font-size: small;
  letter-spacing: 2px;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
CSS Grid layout for wider screens, when browser supports grid:
--------------------------------------------------------------*/
@supports (grid-area: auto) {
  @media only screen and (min-width: 22rem) {
    .site {
      position: relative;
      left: -16rem;
      overflow-x: hidden;
      display: grid;
      grid-template-columns: 16rem calc(100%);
      grid-template-areas:
        'nav header'
        'nav carousel'
        'nav main'
        'nav sidebar'
        'nav footer';
      transition: left 0.6s ease-out;
    }

    .reveal {
      left: 0;
    }

    .masthead {
      grid-area: header;
    }

    .scroller {
      height: auto;
      grid-area: carousel;
    }

    .main-area {
      grid-area: main;
    }

    .sidebar {
      grid-area: sidebar;
    }
    .footer {
      grid-area: footer;
      height: auto;
      width: 100vw;
    }

    .main-nav {
      grid-area: nav;
    }

    .main-nav ul {
      position: fixed;
      display: none;
      flex-direction: column;
    }

    .open ul {
      display: flex;
    }

    .cards {
      margin: 0 auto;
      padding: 1rem;
      transform-style: preserve-3d;
    }

    .card {
      margin: 1rem auto;
      padding: 0.5rem;
      max-width: 26rem;
      height: auto;
      grid-template-columns: 8rem auto;
      background: rgba(0, 7, 27, 0.6);
      /* box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37); */

      backdrop-filter: var(--backdrop-filter);

      border-radius: var(--border-radius);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: var(--box-shadow-card);
    }

    .cards a:focus,
    .cards a:hover {
      cursor: url('images/glove2.png'), auto;
    }
    .cardItem {
      margin: auto;
    }
    /* .data-tilt {
      border-radius: var(--border-radius);
    } */
    .twin {
      max-width: 26rem;
      margin: 0 auto;
      padding: 1rem;
      border-radius: 0.3rem 0.3rem 0 0;
    }
    .twin:last-of-type {
      margin-bottom: 1rem;
      border-radius: 0 0 0.3rem 0.3rem;
    }
  }

  @media only screen and (min-width: 60rem) {
    /*-----Pointer Sidenav---------*/
    .bounce i {
      font-size: 2.4rem;
      color: #fff;
    }
    .bounce {
      cursor: url('images/glove2.png'), auto;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%,
      25%,
      50%,
      75%,
      100% {
        transform: translateX(0);
      }
      40% {
        transform: translateX(-20px);
      }
      60% {
        transform: translateX(-12px);
      }
    }

    .bounce:hover {
      animation: none;
    }
    .main-area {
      margin-bottom: 0;
    }
    .cards {
      max-width: none;
      margin: 1rem auto;
      display: grid;
      grid-template-columns: repeat(2, 28rem);
      grid-gap: 1rem;
      justify-content: center;
    }

    .card {
      display: grid;
      width: 28rem;
      margin: auto;
    }

    .double {
      grid-row: span 3;
    }

    .double .card {
      display: block;
    }
    .twin {
      max-width: 30rem;
      margin: 0 auto;
      padding: 1rem;
      border-radius: 0.3rem 0.3rem 0 0;
    }
    .twin:last-of-type {
      margin-bottom: 2rem;
      border-radius: 0 0 0.3rem 0.3rem;
    }
  }

  @media only screen and (min-width: 78rem) {
    .site {
      grid-template-columns: 16rem calc(100% - 16rem) 16rem;
      grid-template-areas:
        'nav header header'
        'nav carousel carousel'
        'nav main sidebar'
        'nav footer footer';
    }

    .main-area {
      margin-bottom: 0;
    }
    .scroller {
      height: auto;
      grid-area: carousel;
    }
    .card {
      max-width: 30rem;
      margin: auto;
    }
    .twin {
      margin: 0;
      border-radius: 0.3rem 0 0 0;
    }
    .twin:last-of-type {
      border-radius: 0 0 0 0.3rem;
    }
  }
}
@media screen and (max-width: 1248px) {
  .sidebar {
    margin-top: 0;
  }
}

@media screen and (max-width: 30rem) {
  .scroller {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .main-area {
    margin-top: 7rem;
    margin-bottom: 1rem;
  }
}
