:root {
  --theme-color: #369FB0;
  /* https://isotropic.co/tool/hex-color-to-css-filter/ */
  --theme-filter: invert(53%) sepia(21%) saturate(1154%) hue-rotate(140deg) brightness(97%) contrast(92%);
  --theme-bg: white;
  --grey: #808080;
  --grey-filter: invert(48%) sepia(0%) saturate(674%) hue-rotate(249deg) brightness(105%) contrast(81%);
  --banner: #CCEFF4;

  --body-offset: 0px;
}

.cursive {
  font-family: "Caveat", cursive;
}

#body {
  min-height: calc(100vh - var(--body-offset));
}

/* font */

body {
  font-family: "Roboto", sans-serif
}

header,
nav {
  background-color: var(--banner);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  opacity: .6;
}

hr {
  border-top: 1px solid #bbb;
  margin: 20px 0;
}

body {
  /* max-width: 100vw; */
  background-color: #F1F1F1;
}

.text-color {
  color: var(--theme-color);
}

.bg-color {
  background-color: var(--theme-color) !important;
  color: var(--theme-bg);
}

.text-grey {
  color: var(--grey);
}

#summary {
  background-color: #0001;
  max-width: max-content;
}


ul.checklist {
  padding-left: 1.5rem;
}

ul.checklist li {
  list-style-type: none;
  padding-left: 1rem;
}

ul.checklist li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  margin: 0 10px 0 -28px;
  color: #369FB0;
}


.techs {
  /* display: inline-block; */
  margin: 2px 0;
}

h6.techs {
  font-weight: bold;
}

.techs i {
  margin-left: .75em;
  margin-right: .25em !important;
}

.i::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  /* Aligns with text baseline */
  vertical-align: -0.125em;
}

.techs .i::before {
  filter: var(--theme-filter);
}

.text-grey.i::before {
  filter: var(--grey-filter);
}


/* footer */
footer {
  padding: .15px 16px;
  margin-top: 16px;
  text-align: center;
}

footer p {
  margin: 15px auto;
}

#footer-links {
  font-size: smaller;
}

.card-custom {
  border: solid;
  border-radius: 16px;
  border-width: 6px 0;
  border-color: var(--theme-color);
  padding: 50px;
  margin: 36px auto 0;
  background-color: var(--theme-bg);
  color: var(--grey);
}

img.screenshot {
  max-height: 300px;
  max-width: 300px;
}

.screenshot-wrapper img {
  position: absolute;
}

.screenshot-wrapper {
  height: 300px;
  width: 1px;
}

.screenshot-wrapper.mobile img.img1 {
  top: 0;
  left: -165px;
  transform: rotate(-10deg);
}

.screenshot-wrapper.mobile img.img2 {
  top: -10px;
  left: 5px;
  transform: rotate(18deg);
}

.screenshot-wrapper.desktop img.img1 {
  top: 0;
  left: -250px;
  transform: rotate(-10deg);
}

.screenshot-wrapper.desktop img.img2 {
  top: 12px;
  left: -50px;
  transform: rotate(12deg);
}

.screenshot-wrapper.combo img.img1 {
  top: 0;
  left: -230px;
  transform: rotate(-8deg);
}

.screenshot-wrapper.combo img.img2 {
  top: 20px;
  left: 50px;
  transform: rotate(18deg);
}

.img-container {
  height: 300px;
}

.hava-java {
  max-width: 400px;
  background-color: black;
  padding: 30px;
  border: 20px solid #d7df21;
  border-radius: 27px;
}

.hava-java img {
  max-width: 200px;
}

.curbside {
  width: 100%;
  max-width: 400px;
}


@media (max-width: 576px),
((min-width:992px) and (max-width:1199px)) {

  img.screenshot {
    max-height: 200px;
    max-width: 200px;
  }

  .screenshot-wrapper {
    height: 200px;
  }

  .screenshot-wrapper.mobile img.img1 {
    top: 0;
    left: -111px;
    /* transform: rotate(-10deg); */
  }

  .screenshot-wrapper.mobile img.img2 {
    top: -7px;
    left: 3px;
    /* transform: rotate(18deg); */
  }

  .screenshot-wrapper.desktop img.img1 {
    top: 0;
    left: -167px;
    /* transform: rotate(-10deg); */
  }

  .screenshot-wrapper.desktop img.img2 {
    top: 7px;
    left: -33px;
    /* transform: rotate(12deg); */
  }

  .screenshot-wrapper.combo img.img1 {
    top: 0;
    left: -153px;
    /* transform: rotate(-8deg); */
  }

  .screenshot-wrapper.combo img.img2 {
    top: 14px;
    left: 33px;
    /* transform: rotate(18deg); */
  }

  .img-container {
    height: 200px;
  }

  .hava-java {
    padding: 24px;
    border-width: 16px;
    max-width: 300px;
  }

  .hava-java img {
    max-height: 100px;
  }
}


@media  (min-width:992px) {
  .nowrap {
    text-wrap: nowrap;
  }
}