/**
 * Minified by jsDelivr using clean-css v4.1.11.
 * Original file: /npm/modern-normalize@0.5.0/modern-normalize.css
 * 
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*! modern-normalize | MIT License | https://github.com/sindresorhus/modern-normalize */
html {
  box-sizing: border-box;
}
*,
::after,
::before {
  box-sizing: inherit;
}
:root {
  -moz-tab-size: 4;
  tab-size: 4;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
hr {
  height: 0;
}
abbr[title] {
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier,
    monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
/*# sourceMappingURL=/sm/6d3bd28f82623617090109f6714e5fbdc6081ce0547a646d1a87ce8a39d126ef.map */

/* above: https://github.com/sindresorhus/modern-normalize */
/* below: my styles */

body {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif !important;
  line-height: 1.8;
}

h1 {
  font-size: 2rem;
  line-height: 1.4;
}


h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a:link,
a:visited,
a:hover,
a:active {
  color: blue;
}

#my_picture {
  width: 100%;
}

img {
  width: 100%;
}

.cv-flex > div {
  display: flex;
  padding-bottom: 1rem;
}

.cv-flex > div div:first-child {
  width: 7rem;
  flex-shrink: 0;
}

.metabox > div {
  display: flex;
}

.metabox > div div:first-child {
  width: 7rem;
  flex-shrink: 0;
}

.main-navigation {
  margin-bottom: 2rem;
}

.filter-container a {
  text-decoration: inherit;
  color: inherit;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: strech;
  margin-bottom: 5rem;
}

.filter-title {
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-subtitle {
  font-size: 0.9rem;
}

.filter-date {
  font-size: 0.9rem;
  opacity: 0.7;
}

.project-item {
  width: 100%;
  margin: 1rem;
  padding: 0.5rem;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.project-item:hover {
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

/* different for desktop view */
@media only screen and (min-width: 600px) {
  .project-item {
    width: 47%;
    margin: 1.5%;
  }

  .project-item img {
    height: 6rem;
    filter: blur(1px) grayscale(100%);
    object-fit: cover;
  }

  .project-item:hover img {
    height: 6rem;
    filter: blur(0px) grayscale(0%);
    object-fit: cover;
  }

  .filter-title {
    font-size: 1.2rem;
  }

  .filter-date {
    font-size: 0.8rem;
    opacity: 0.7;
  }

  .project-item:hover .filter-title div:first-child {
    color: blue;
    text-decoration: underline;
  }
}

code {
  font-family: Inconsolata, monospace;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  display: block;
  padding: 1rem;
  margin: 1rem 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: small;
}

.single {
  display: inline;
}

.blog {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-content: flex-start;
  margin-bottom: 1rem;
}

.blog-date {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 6rem;
}

.active {
  color: blueviolet !important;
  text-decoration-color: blue;
}

#title {
  margin-bottom: 2rem;
}

.blog-title {
  max-width: 75%;
  margin-left: 12.5%;
}


.show-mobile {
  display: none;
}
.hide-mobile {
  display: block;
}

@media only screen and (max-width: 900px) {
  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }
}
