html {
    font-size: 14px;
    line-height: 1.4;
    scroll-behavior: smooth;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}



@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');


body {
  background: #F6F6F6;
  color: #3C4F61;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  /* direction: rtl; */
  margin: 0;
  padding:0;
}
h1, h2, h3 {
  padding-top: 5vh ;
  text-align: center;
}
h1 img {
  padding-bottom: 2rem;
  opacity:0.15;
}


.grid {
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  justify-content: center;
  padding: 10vh 5vw 10vh;
  max-width:1360px;
  margin: 0 auto;
}
.grid-item {
  display: flex;;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 0 20px #3C4F6120;
  border-radius: 10px;
  color: #A8A8A8;
  text-decoration: none;
  padding: 3rem;
  margin: 2rem;
  transition: all 200ms ease-out;
}
.grid-item:hover {
  box-shadow: 0 0 20px #3C4F6180;
  transform: translateY(-0.5rem);
}
.grid-item:visited {
  background: #fafafa;
}
.grid-item span {
  padding: 1rem 0 0;
}
.full-image {
  width:100%;
  margin: 0;
}
.full-image img {
  display: block;
  max-width: 100%;
}
.back {
  width: 36px;
  height:36px;
  transition: all 200ms ease-out;
  opacity: 0.5;
  position: fixed;
  left: 3rem;
  top:1rem;
  display: block;
}
.back:hover {
  transform: scale3d(1.2,1.2,1.2);
  opacity: 0.8;
}
.back svg {
  max-width:100%
}

.download,.download span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.download {
  width:100%;
  padding: 20vh 5vw;
  text-decoration: none;
  color: #111010;
  font-size: 28px;
  font-weight: bold;
}
.download span {
  border: #111010 4px solid;
  background: #fff;
  display: flex;
  padding: 20px 30px;
  gap: 10px;
  border-radius: 10px;
  transition: 300ms all ease-in-out;
}
.download:hover span {
  background: #111010;
  color: #fff;
}
@media only screen and (min-width: 35em) {

}

@media print,
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

