
/* src/app/layout.module.css */
.app_layout__htmlstyle {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.app_layout__bodystyle {
  flex: 1;
  margin: 0;
  font-family: "Oswald";

  --text-color1: #666666;
  --text-color2: #fff;
  --text-color3: #000;

  --header-color1: #fff;

  --background1: #3a393f;
  --background2: #f0f0f0;
  --background3: #fff;

  --link-background1: #eb4c44; /*Match the color of the image (red)*/

  --size-column: 400px;
}

/* ============================================================ Structure ============================================================*/
.app_layout__container {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: white;
  z-index: 1;
  transition-property: transform;
  transition-duration: 0.5s;
}

.app_layout__topMenu {
  background-color: var(--background1);
}
.app_layout__topMenu a,
.app_layout__topMenu a:visited {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 65px;
  margin-bottom: 15px;
  color: var(--header-color1);
}

.app_layout__topMenu a:hover {
  background-color: var(--link-background1);
}

/*
* Header: My name and my job description
*/
.app_layout__topHeader {
  word-break: break-all; /* For Small Resolution*/
  padding: 16px;
}

.app_layout__topHeaderMyName {
  margin-right: 20px;
}

.app_layout__topHeaderBlog {
  margin-left: 20px;
}

@media only screen and (max-width: 500px) {
  .app_layout__topHeader a {
    display: flex;
  }
  .app_layout__topHeaderBlog {
    margin-left: 0px;
  }
}

.app_layout__homeContent {
  padding-top: 200px;
  padding-left: 40px;
}

.app_layout__homeContent h1 {
  text-transform: uppercase;
  font-size: 54px;
  font-variation-settings: "wght" 200;
  letter-spacing: 1px;
  line-height: 65px;
  margin-bottom: 15px;
  color: var(--header-color1);
}

@media only screen and (max-width: 500px) {
  .app_layout__homeContent h1 {
    font-size: 40px;
  }
}

.app_layout__homeContentTitles {
  color: white;
  font-size: 1.6rem;
  line-height: 2rem;
  text-shadow: black 1px 1px 2px;
}

.app_layout__textOnPicture {
  z-index: 2;
  position: absolute;
}

.app_layout__topPicture {
  width: 100%;
  height: 100vh;
}

.app_layout__topMenu a.app_layout__topHeaderAnchorLink {
  font-size: 20px;
  margin-left: 6px;
  margin-right: 6px;
}

.app_layout__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.app_layout__videoContainer {
  position: relative;
  padding-bottom: 50%;
}
.app_layout__firstVideo {
  width: 80%;
  margin: auto;
}

.app_layout__contactContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin-top: 80px;
}

@media only screen and (max-width: 500px) {
  .app_layout__contactContainer {
    grid-template-columns: 1fr;
  }
}

/*
Icons for the email, phone, location and all social media logos
*/
.app_layout__contactDetail svg {
  font-size: 30px;
}

/*
The bottom row that contains all the social media logos
*/
.app_layout__contactContainer2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
  margin-top: 80px;
  background-color: var(--background1);
  padding: 50px;
  margin-bottom: 0;
}

section.app_layout__contactSection {
  margin-bottom: 0;
  padding-bottom: 0;
}

.app_layout__wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.app_layout__imageWrapper {
  z-index: -1;
}



/* src/app/blog/layout.module.css */
.app_blog_layout__blogbodystyle {
  margin: 0;
  height: 100%;
  font-family: "Oswald";
  font-size: 20px;
  --blog-title-foreground-color: #e2d0ff;
  --blog-date-foreground-color: #858585;
  --blogcategory-foreground-color: #c6b2ff;
  --blogcategory-background-color: #2d1047;
  --link-foreground-color: #ca8bfd;
  --current-link-background-color: #362446;
  --blog-text-color: #a1a1aacc;

  --blog-code-inline-foreground-color: #f775ff;
  --blog-code-inline-background-color: #4c3e5b;
  --blog-code-highlight-line-background-color: #54286f;
  --blog-code-line-number-foreground-color: #f775ff;

  --blog-section-border-color: #777777;
  --blog-background-color1: #2a2338;
  --blog-background-color2: #0a080e;

  --blog-blockquote-text-color: #777777;
  --blog-blockquote-border-color: #f775ff;

  background: linear-gradient(
    170deg,
    var(--blog-background-color1) 0%,
    var(--blog-background-color2) 10%,
    var(--blog-background-color2) 90%,
    var(--blog-background-color1) 100%
  );
}



/* src/app/philosophy/layout.module.css */
/* Paper-like reading surface; maps legacy --blog-* names used by shared linenumber styles */
.app_philosophy_layout__philosophyRoot {
  margin: 0;
  min-height: 100%;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;

  --blog-title-foreground-color: #1a1a1a;
  --blog-date-foreground-color: #5c5c5c;
  --blogcategory-foreground-color: #2c2c2c;
  --blogcategory-background-color: #ededed;
  --link-foreground-color: #284e7a;
  --current-link-background-color: #e8e4db;
  --blog-text-color: #252525;

  --blog-code-inline-foreground-color: #1f3d2f;
  --blog-code-inline-background-color: #eef0ea;
  --blog-code-highlight-line-background-color: #f0ebe0;
  --blog-code-line-number-foreground-color: #8a8579;

  --blog-section-border-color: #c9c3b4;
  --blog-background-color1: #faf8f3;
  --blog-background-color2: #f3f1eb;

  --blog-blockquote-text-color: #4a4946;
  --blog-blockquote-border-color: #284e7a;

  background-color: var(--blog-background-color1);
  background-image: linear-gradient(
    180deg,
    var(--blog-background-color1) 0%,
    var(--blog-background-color2) 48%,
    var(--blog-background-color1) 100%
  );
}



/* src/app/website/website.module.css */
.app_website_website__container {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: white;
  z-index: 1;
  transition-property: transform;
  transition-duration: 0.5s;
}

section.app_website_website__contactSection a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 32px;
  font-family: "Oswald";
  letter-spacing: 1px;
  line-height: 65px;
  margin-bottom: 15px;
  color: var(--header-color1);
}

section.app_website_website__contactSection a:hover {
  background-color: var(--link-background1);
}

.app_website_website__sectionMainpage {
  font-family: "Open Sans";
  padding-top: 100px;
  padding-bottom: 100px;
}

.app_website_website__sectionMainpage > h2 {
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Oswald";
  color: var(--text-color3);
  font-weight: 300;
  margin-bottom: 0.9rem;
  font-size: 2.1rem;
  line-height: 2.5rem;
}

.app_website_website__sectionPhilosophySub {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--text-color1);
  text-align: center;
  margin: 28px auto 36px;
  max-width: 36rem;
  font-style: italic;
}

.app_website_website__sectionPhilosophyCta {
  text-align: center;
  margin-top: 2rem;
}

.app_website_website__sectionPhilosophyCta a {
  font-family: "Oswald";
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color3);
  text-decoration: none;
}

.app_website_website__sectionPhilosophyCta a:hover {
  color: var(--link-background1);
}

.app_website_website__sectionMainpage h3,
.app_website_website__sectionMainpage h5 {
  color: var(--text-color3);
  text-align: center;
}

.app_website_website__sectionMainpage h3 {
  font-size: 22px;
}
.app_website_website__sectionMainpage h5 {
  font-size: 18px;
}

.app_website_website__sectionFixedWitdh {
  display: flex;
  flex-flow: wrap;
  row-gap: 20px;
  justify-content: space-around;
  width: 80%;
  margin: auto;
}
.app_website_website__sectionFixedWitdhContent {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: var(--size-column);
}

@media only screen and (max-width: 500px) {
  .app_website_website__sectionFixedWitdhContent {
    flex: 1 1 100%;
  }
}

.app_website_website__sectionMainpage p {
  line-height: 1.8rem;
  font-size: 1.1rem;
  color: var(--text-color1);
  text-align: justify;
  padding-left: 4px;
  padding-right: 4px;
}

.app_website_website__sectionVisualOne {
  background-color: var(--background2);
}
.app_website_website__sectionVisualTwo {
  background-color: var(--background3);
}
.app_website_website__sectionVisualOneSubHeader {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-color1);
}
.app_website_website__sectionMainpage p.app_website_website__cardFixedWidthImage {
  text-align: center;
}
.app_website_website__cardFixedWidthImageImg {
  max-width: var(--size-column);
}

.app_website_website__sectionSingleFixedWidth {
  max-width: var(--size-column);
  margin: auto;
}

@media only screen and (max-width: 500px) {
  .app_website_website__cardWithImageContainer {
    max-width: var(--size-column);
    grid-template-columns: none;
  }
}



/* src/app/blog/[slug]/Page.module.css */
.app_blog__slug__Page__blogPostContainer table {
  border: 1px solid var(--blog-section-border-color);
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
.app_blog__slug__Page__blogPostContainer table thead tr {
  border-bottom: 1px solid var(--blog-section-border-color);
}

.app_blog__slug__Page__blogPostContainer p,
.app_blog__slug__Page__blogPostContainer th,
.app_blog__slug__Page__blogPostContainer td,
.app_blog__slug__Page__blogPostContainer ol,
.app_blog__slug__Page__blogPostContainer ul {
  color: var(--blog-text-color);
  line-height: 34px;
  font-size: 22px;
  margin-bottom: 24px;
  text-align: justify;
}
.app_blog__slug__Page__blogPostContainer th,
.app_blog__slug__Page__blogPostContainer td {
  font-size: 16px;
}
.app_blog__slug__Page__blogPostContainer a {
  color: var(--link-foreground-color);
}

.app_blog__slug__Page__blogPostContainer blockquote p::before {
  content: "“";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  color: var(--blog-blockquote-border-color);
  margin-right: 16px;
}

.app_blog__slug__Page__blogPostContainer blockquote p::after {
  content: "”";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  color: var(--blog-blockquote-border-color);
  margin-left: 2px;
}

.app_blog__slug__Page__blogPostContainer blockquote p {
  font-style: italic;
  color: var(--blog-blockquote-text-color);
  border-left: 10px solid var(--blog-blockquote-border-color);
  padding-left: 10px;
  word-break: break-all;
}

.app_blog__slug__Page__blogPostContainer pre {
  overflow: auto;
}

.app_blog__slug__Page__blogPostContainer p.app_blog__slug__Page__blogPostDate {
  color: var(--blog-date-foreground-color);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 12px;
}

.app_blog__slug__Page__blogPostContainer h1 {
  color: var(--blog-title-foreground-color);
  font-size: 30px;
  text-decoration: underline;
}

.app_blog__slug__Page__blogPostContainer h2 {
  color: var(--blog-title-foreground-color);
  font-size: 26px;
}

.app_blog__slug__Page__blogPostContainer h3 {
  color: var(--blog-title-foreground-color);
  font-size: 22px;
}

.app_blog__slug__Page__blogPostContainer code:not([class*="code-highlight"]) {
  color: var(--blog-code-inline-foreground-color);
  background-color: var(--blog-code-inline-background-color);
  padding: 2px 4px 2px 4px;
  border-radius: 4px;
  font-size: 16px;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}

.app_blog__slug__Page__blogPostContainer p:has(img) {
  padding: 20px;
  text-align: center;
}
.app_blog__slug__Page__blogPostContainer img {
  --distance: 16px;
  box-shadow:
    white var(--distance) var(--distance) 20px 0px,
    white calc(0px - var(--distance)) var(--distance) 20px 0px,
    white var(--distance) calc(0px - var(--distance)) 20px 0px,
    white calc(0px - var(--distance)) calc(0px - var(--distance)) 20px 0px;
  margin: var(--distance) 0;
}

.app_blog__slug__Page__blogPostContainer img,
.app_blog__slug__Page__blogPostContainer video {
  max-width: 100%;
  border-radius: 10px;
}

.app_blog__slug__Page__blogPostContainer ul {
  margin-top: 5px;
  margin-bottom: 5px;
  list-style-type: square;
}

.app_blog__slug__Page__blogPostContainer p + ul {
  margin-top: -20px;
}



/* src/app/blog/_components/BlogBody.module.css */
.app_blog__components_BlogBody__BlogBody {
  margin: auto;
  padding-top: 30px;
  max-width: 800px;
}
@media only screen and (max-width: 800px) {
  .app_blog__components_BlogBody__main {
    width: 90%;
    margin: auto;
  }
}
.app_blog__components_BlogBody__heading {
  color: var(--blog-title-foreground-color);
}
.app_blog__components_BlogBody__siteTitle {
  font-size: 3rem;
  color: var(--blog-title-foreground-color);
  font-weight: 700;
  margin: 0;
  /* Originally a <header> landmark; now an <h1> — keep visual appearance unchanged */
}
.app_blog__components_BlogBody__navLinks {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.app_blog__components_BlogBody__navLinkItem {
  display: flex;
  align-items: center;
}
.app_blog__components_BlogBody__navLinkText {
  color: var(--link-foreground-color);
  margin-right: 10px;
  padding: 2px 6px 2px 6px;
  display: inline-block;
}

.app_blog__components_BlogBody__blogTopPicture {
  border-radius: 6px;
}

.app_blog__components_BlogBody__paginationBar {
  margin-top: 36px;
}

.app_blog__components_BlogBody__paginationTitle {
  padding-top: 8px;
  border-top: 1px solid var(--blog-section-border-color);
  color: var(--blog-title-foreground-color);
  font-size: 24px;
}

.app_blog__components_BlogBody__paginationBar a {
  margin-left: 4px;
  padding: 4px 10px;
  font-size: 20px;
  line-height: 30px;
  display: inline-block;
  color: var(--link-foreground-color);
}
.app_blog__components_BlogBody__paginationBar a:hover {
  background-color: var(--blog-title-foreground-color);
  border-radius: 4px;
}
.app_blog__components_BlogBody__currentLink {
  background-color: var(--current-link-background-color);
  border-radius: 4px;
}
.app_blog__components_BlogBody__paginationLinks {
  font-size: 24px;
  margin-top: 8px;
}

.app_blog__components_BlogBody__blogPictureContainer {
  overflow: hidden;
}

.app_blog__components_BlogBody__BlogBody td,
.app_blog__components_BlogBody__BlogBody th {
  border: 1px solid var(--blog-section-border-color);
  padding: 4px;
}

.app_blog__components_BlogBody__totalBlogPost {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--blog-date-foreground-color);
  font-size: 18px;
  font-style: italic;
}



/* src/app/blog/_components/BlogCategories.module.css */
.app_blog__components_BlogCategories__container {
  margin-left: 2px;
}

.app_blog__components_BlogCategories__item {
  font-size: 12px;
  margin-left: 8px;
  padding: 4px 6px 4px 6px;
  color: var(--blogcategory-foreground-color);
  background-color: var(--blogcategory-background-color);
  border-radius: 4px;
}



/* src/app/blog/_components/BlogEntry.module.css */
.app_blog__components_BlogEntry__blogEntry {
  margin-bottom: 20px;
}
.app_blog__components_BlogEntry__blogEntryArticleTitle {
  margin-bottom: 4px;
}

.app_blog__components_BlogEntry__blogEntryDate {
  margin-top: 4px;
  margin-bottom: 4px;
  color: var(--blog-date-foreground-color);
  font-size: 18px;
  font-style: italic;
}

.app_blog__components_BlogEntry__blogEntryDetails {
  display: flex;
  align-items: center;
  line-height: 20px;
}

.app_blog__components_BlogEntry__blogEntry a {
  color: var(--link-foreground-color);
}

.app_blog__components_BlogEntry__blogEntry a:visited {
  color: var(--link-foreground-color);
}

.app_blog__components_BlogEntry__blogEntry a:hover {
  color: var(--link-foreground-color);
}



/* src/app/blog/_components/BlogSearchEntry.module.css */
.app_blog__components_BlogSearchEntry__blogSearchEntry {
  margin-bottom: 20px;
}
.app_blog__components_BlogSearchEntry__blogSearchEntryArticleTitle {
  margin-bottom: 4px;
  font-size: 20px;
}

.app_blog__components_BlogSearchEntry__blogEntryDate {
  margin-top: 4px;
  margin-bottom: 4px;
  color: var(--blog-date-foreground-color);
  font-size: 18px;
  font-style: italic;
}

.app_blog__components_BlogSearchEntry__blogEntryDetails {
  display: flex;
  align-items: center;
  line-height: 20px;
}

.app_blog__components_BlogSearchEntry__blogSearchEntry a {
  color: var(--link-foreground-color);
}

.app_blog__components_BlogSearchEntry__blogSearchEntry a:visited {
  color: var(--link-foreground-color);
}

.app_blog__components_BlogSearchEntry__blogSearchEntry a:hover {
  color: var(--link-foreground-color);
}



/* src/app/blog/search/page.module.css */
.app_blog_search_page__searchContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.app_blog_search_page__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blog-text-color);
}

.app_blog_search_page__inputs {
  font-family: "Oswald";
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  /*Space between textbox and button*/
  gap: 10px;
}

.app_blog_search_page__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app_blog_search_page__textbox {
  flex: 1 1;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding-left: 10px;
  color: var(--blog-title-foreground-color);
  background-color: var(--blog-background-color2);
  border: 1px solid var(--blog-section-border-color);
  border-radius: 5px;
}
.app_blog_search_page__textbox::placeholder {
  color: var(--current-link-background-color);
  font-style: italic;
  opacity: 1; /* Firefox */
}

.app_blog_search_page__button {
  width: 85px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  background-color: var(--current-link-background-color);
  color: var(--blog-title-foreground-color);
}

.app_blog_search_page__button:hover {
  cursor: pointer;
}

.app_blog_search_page__searchinfo {
  color: var(--blog-date-foreground-color);
}

.app_blog_search_page__searchPerformance {
  color: var(--blog-date-foreground-color);
  font-size: 12px;
  text-align: center;
}

.app_blog_search_page__resultsContainer {
  list-style: none;
  padding-left: 0;
  width: 100%;
}



/* src/app/philosophy/[slug]/Page.module.css */
.app_philosophy__slug__Page__blogPostContainer {
  max-width: 100%;
}

.app_philosophy__slug__Page__blogPostContent > p:first-of-type::first-letter {
  float: left;
  font-size: 4em;
  line-height: 0.9;
  margin-right: 0.12em;
  margin-top: 0.06em;
  font-weight: 600;
}

.app_philosophy__slug__Page__blogPostContainer table {
  border: 1px solid var(--blog-section-border-color);
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

.app_philosophy__slug__Page__blogPostContainer table thead tr {
  border-bottom: 1px solid var(--blog-section-border-color);
}

.app_philosophy__slug__Page__blogPostContainer p,
.app_philosophy__slug__Page__blogPostContainer th,
.app_philosophy__slug__Page__blogPostContainer td,
.app_philosophy__slug__Page__blogPostContainer ol,
.app_philosophy__slug__Page__blogPostContainer ul {
  color: var(--blog-text-color);
  line-height: 1.75;
  font-size: 1.06em;
  margin-bottom: 2rem;
  text-align: justify;
}

.app_philosophy__slug__Page__blogPostContainer th,
.app_philosophy__slug__Page__blogPostContainer td {
  font-size: 0.95em;
}

.app_philosophy__slug__Page__blogPostContainer a {
  color: var(--link-foreground-color);
}

.app_philosophy__slug__Page__blogPostContainer blockquote {
  margin: 0 0 1.25rem;
  padding-left: 0;
  border-left: none;
}

.app_philosophy__slug__Page__blogPostContainer blockquote p {
  font-style: italic;
  color: var(--blog-blockquote-text-color);
  border-left: 4px solid var(--blog-blockquote-border-color);
  padding-left: 16px;
  margin-bottom: 0.75rem;
}

.app_philosophy__slug__Page__blogPostContainer blockquote p::before,
.app_philosophy__slug__Page__blogPostContainer blockquote p::after {
  content: none;
}

.app_philosophy__slug__Page__blogPostContainer pre {
  overflow: auto;
  background-color: #f7f6f2 !important;
  border: 1px solid var(--blog-section-border-color);
}

.app_philosophy__slug__Page__blogPostContainer p.app_philosophy__slug__Page__blogPostDate {
  color: var(--blog-date-foreground-color);
  font-size: 0.95em;
  font-style: italic;
  margin-bottom: 12px;
}

.app_philosophy__slug__Page__blogPostContainer h1 {
  color: var(--blog-title-foreground-color);
  font-size: 1.65em;
  font-weight: 600;
}

.app_philosophy__slug__Page__blogPostContainer h2 {
  color: var(--blog-title-foreground-color);
  font-size: 1.35em;
}

.app_philosophy__slug__Page__blogPostContainer h3 {
  color: var(--blog-title-foreground-color);
  font-size: 1.15em;
}

.app_philosophy__slug__Page__blogPostContainer code:not([class*="code-highlight"]) {
  color: var(--blog-code-inline-foreground-color);
  background-color: var(--blog-code-inline-background-color);
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 0.85em;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Ubuntu Mono",
    monospace;
}

.app_philosophy__slug__Page__blogPostContainer p:has(img) {
  padding: 16px;
  text-align: center;
}

.app_philosophy__slug__Page__blogPostContainer img {
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 0 1px rgba(0, 0, 0, 0.12);
  margin: 16px 0;
}

.app_philosophy__slug__Page__blogPostContainer img,
.app_philosophy__slug__Page__blogPostContainer video {
  max-width: 100%;
  border-radius: 4px;
}

.app_philosophy__slug__Page__blogPostContainer ul {
  margin-top: 6px;
  margin-bottom: 6px;
  list-style-type: disc;
  padding-left: 1.4rem;
}

.app_philosophy__slug__Page__blogPostContainer p + ul {
  margin-top: -12px;
}



/* src/app/philosophy/_components/PhilosophyBlogBody.module.css */
.app_philosophy__components_PhilosophyBlogBody__blogBodyShell {
  margin: auto;
  padding-top: 28px;
  padding-bottom: 48px;
  max-width: 42rem;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (max-width: 800px) {
  .app_philosophy__components_PhilosophyBlogBody__main {
    width: 100%;
    margin: auto;
  }
}

.app_philosophy__components_PhilosophyBlogBody__siteTitle {
  font-size: 2em;
  letter-spacing: 0.02em;
  color: var(--blog-title-foreground-color);
  font-weight: 600;
  margin: 0 0 4px;
  font-variant-caps: small-caps;
}

.app_philosophy__components_PhilosophyBlogBody__siteSubtitle {
  font-size: 0.95em;
  color: var(--blog-date-foreground-color);
  font-style: italic;
  margin: 0 0 20px;
  font-family: Georgia, serif;
}

.app_philosophy__components_PhilosophyBlogBody__paperEdge {
  border: 1px solid var(--blog-section-border-color);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 20px 20px 8px;
  margin-bottom: 24px;
}

.app_philosophy__components_PhilosophyBlogBody__navLinks {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 2px 0;
}

.app_philosophy__components_PhilosophyBlogBody__navLinkItem {
  display: flex;
  align-items: center;
}

.app_philosophy__components_PhilosophyBlogBody__navLinkItem a {
  text-decoration: underline;
}

.app_philosophy__components_PhilosophyBlogBody__navLinkText {
  color: var(--link-foreground-color);
  margin-right: 10px;
  padding: 2px 6px;
  display: inline-block;
  font-size: 0.92em;
  text-decoration: none;
}

.app_philosophy__components_PhilosophyBlogBody__navLinkText:hover {
  text-decoration: underline;
}

.app_philosophy__components_PhilosophyBlogBody__currentLink {
  background-color: var(--current-link-background-color);
  border-radius: 3px;
}

.app_philosophy__components_PhilosophyBlogBody__main {
  margin-top: 8px;
}

.app_philosophy__components_PhilosophyBlogBody__heading {
  color: var(--blog-title-foreground-color);
  font-size: 1.35em;
  font-weight: 600;
  margin-top: 0;
}

.app_philosophy__components_PhilosophyBlogBody__paginationBar {
  margin-top: 36px;
}

.app_philosophy__components_PhilosophyBlogBody__paginationTitle {
  padding-top: 8px;
  border-top: 1px solid var(--blog-section-border-color);
  color: var(--blog-title-foreground-color);
  font-size: 1em;
  font-variant-caps: small-caps;
  letter-spacing: 0.06em;
}

.app_philosophy__components_PhilosophyBlogBody__paginationBar a {
  margin-left: 4px;
  padding: 4px 10px;
  font-size: 0.95em;
  line-height: 28px;
  display: inline-block;
  color: var(--link-foreground-color);
}

.app_philosophy__components_PhilosophyBlogBody__paginationBar a:hover {
  background-color: var(--current-link-background-color);
  border-radius: 3px;
}

.app_philosophy__components_PhilosophyBlogBody__paginationLinks {
  margin-top: 8px;
}

.app_philosophy__components_PhilosophyBlogBody__totalPosts {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--blog-date-foreground-color);
  font-size: 0.92em;
  font-style: italic;
}



/* src/app/philosophy/_components/PhilosophyBlogSearchEntry.module.css */
.app_philosophy__components_PhilosophyBlogSearchEntry__blogSearchEntry {
  margin-bottom: 20px;
}

.app_philosophy__components_PhilosophyBlogSearchEntry__blogSearchEntryArticleTitle {
  margin: 0;
  font-size: 1.15rem;
}

.app_philosophy__components_PhilosophyBlogSearchEntry__blogSearchEntryArticleTitle a {
  color: var(--link-foreground-color);
  text-decoration: none;
}

.app_philosophy__components_PhilosophyBlogSearchEntry__blogSearchEntryArticleTitle a:hover {
  text-decoration: underline;
}



/* src/app/philosophy/_components/PhilosophyEntry.module.css */
.app_philosophy__components_PhilosophyEntry__blogEntry {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--blog-section-border-color);
}

.app_philosophy__components_PhilosophyEntry__blogEntry:last-child {
  border-bottom: none;
}

.app_philosophy__components_PhilosophyEntry__blogEntryArticleTitle {
  margin: 0 0 6px;
}

.app_philosophy__components_PhilosophyEntry__blogEntryArticleTitle a {
  color: var(--blog-title-foreground-color);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.app_philosophy__components_PhilosophyEntry__blogEntryArticleTitle a:hover {
  text-decoration: underline;
}

.app_philosophy__components_PhilosophyEntry__blogEntryDetails {
  color: var(--blog-date-foreground-color);
}

.app_philosophy__components_PhilosophyEntry__blogEntryDate {
  margin-right: 8px;
}



/* src/app/website/AboutMeSection.module.css */
.app_website_AboutMeSection__sectionAboutMeContainer {
  display: flex;
  flex-flow: wrap;
  row-gap: 20px;
  justify-content: space-around;
  width: 80%;
  margin: auto;
}
.app_website_AboutMeSection__sectionAboutMeContainerContent {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: var(--size-column);
}

@media only screen and (max-width: 500px) {
  .app_website_AboutMeSection__sectionAboutMeContainerContent {
    flex: 1 1 100%;
  }
}



/* src/app/website/AchievementsSection.module.css */
.app_website_AchievementsSection__achievementContainerBackground {
  background: url(/images/backgrounds/patrickdesjardinsatnetflix2.jpg) no-repeat
    top center fixed;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  color: var(--text-color2);
  padding: 0;
}

.app_website_AchievementsSection__achivementTextZone > h2 {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: bold;
}
.app_website_AchievementsSection__achivementTextZone > .app_website_AchievementsSection__achievementText p {
  color: var(--header-color1);
  font-size: 14px;
}

.app_website_AchievementsSection__achievementOverlay {
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app_website_AchievementsSection__achievementGallery {
  min-height: 300px;
  background-color: rgba(125, 123, 144, 0.4);
  padding: 24px;
  margin: auto;
  border-radius: 2px;
  margin: 150px 200px 150px 50px;
}
.app_website_AchievementsSection__achivementTextZone {
  width: 330px;
  margin: auto;
  margin-top: 300px;
}

@media only screen and (max-width: 500px) {
  .app_website_AchievementsSection__achievementOverlay {
    display: block;
  }
}

.app_website_AchievementsSection__patentFlair,
.app_website_AchievementsSection__amazonFlair {
  background-color: white;
  width: 290px;
  border-radius: 2px;
  padding: 2px;
  margin: auto;
}

.app_website_AchievementsSection__amazonFlair > a {
  display: inline-block;
}

.app_website_AchievementsSection__amazonFlair > a > * {
  vertical-align: middle;
}

.app_website_AchievementsSection__mvpFlair {
  margin: auto;
  width: 200px;
}



/* src/app/website/CardFixedWidth.module.css */
.app_website_CardFixedWidth__sectionFixedWitdh {
  display: flex;
  flex-flow: wrap;
  row-gap: 20px;
  justify-content: space-around;
  width: 80%;
  margin: auto;
}
.app_website_CardFixedWidth__sectionFixedWitdhContent {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: var(--size-column);
}

@media only screen and (max-width: 500px) {
  .app_website_CardFixedWidth__sectionFixedWitdhContent {
    flex: 1 1 100%;
  }
}



/* src/app/website/CardWithImage.module.css */
.app_website_CardWithImage__cardWithImageContainer {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 32px;
}

.app_website_CardWithImage__cardWithImageContainerImage {
  padding: 16px;
}

@media only screen and (max-width: 500px) {
  .app_website_CardWithImage__cardWithImageContainer {
    max-width: var(--size-column);
    grid-template-columns: none;
  }
  .app_website_CardWithImage__cardWithImageContainerImage {
    display: none;
    width: 0;
  }
}

.app_website_CardWithImage__cardWithImageContainer > .app_website_CardWithImage__cardWithImageContainerText > h5,
.app_website_CardWithImage__cardWithImageContainer > .app_website_CardWithImage__cardWithImageContainerText > h6 {
  text-align: left;
  margin: 6px 0 6px 0;
}

.app_website_CardWithImage__cardWithImageContainer > .app_website_CardWithImage__cardWithImageContainerText > h6 {
  font-style: italic;
  color: var(--text-color1);
}

.app_website_CardWithImage__cardWithImageContainer > .app_website_CardWithImage__cardWithImageContainerText > p {
  font-size: 14px;
}



/* src/app/website/Conference.module.css */
.app_website_Conference__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.app_website_Conference__videoContainer {
  position: relative;
  padding-bottom: 50%;
}
.app_website_Conference__firstVideo {
  width: 80%;
  margin: auto;
}



/* src/app/website/ContactsSection.module.css */
.app_website_ContactsSection__contactContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin-top: 80px;
}

@media only screen and (max-width: 500px) {
  .app_website_ContactsSection__contactContainer {
    grid-template-columns: 1fr;
  }
}

/*
Icons for the email, phone, location and all social media logos
*/
.app_website_ContactsSection__contactDetail svg {
  font-size: 30px;
  width: 32px;
  height: 32px;
}

/*
The bottom row that contains all the social media logos
*/
.app_website_ContactsSection__contactContainer2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
  margin-top: 80px;
  background-color: var(--background1);
  padding: 50px;
  margin-bottom: 0;
}

section.app_website_ContactsSection__contactSection {
  margin-bottom: 0;
  padding-bottom: 0;
}

section.app_website_ContactsSection__contactSection a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 32px;
  font-family: "Oswald";
  letter-spacing: 1px;
  line-height: 65px;
  margin-bottom: 15px;
  color: var(--header-color1);
}

section.app_website_ContactsSection__contactSection a:hover {
  background-color: var(--link-background1);
}



/* src/app/website/EducationSection.module.css */
.app_website_EducationSection__educationSection {
  font-size: 20px;
}
.app_website_EducationSection__educationSection ul {
  list-style: none;
}

.app_website_EducationSection__educationSection ul li {
  margin-top: 30px;
}

.app_website_EducationSection__educationSection ul li > svg,
.app_website_EducationSection__educationSection ul li > p {
  display: inline;
  width: 32px;
  width: 32px;
}

.app_website_EducationSection__educationSection ul li > svg {
  margin-right: 16px;
  color: var(--text-color1);
}



/* src/app/website/HistorySection.module.css */
.app_website_HistorySection__historyContainerBackground {
  background: url(/images/backgrounds/patrickdesjardinsatmicrosoft.jpg)
    no-repeat top center fixed;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  color: var(--header-color1);
  padding: 0;
}

.app_website_HistorySection__historyOverlay {
  width: 100%;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;

  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  overflow: hidden;
  min-height: 600px;
}

.app_website_HistorySection__historyOverlayColumn1,
.app_website_HistorySection__historyOverlayColumn2 {
  margin: 150px 30px 150px 30px;

  background-color: rgba(226, 226, 226, 0.28);
  padding: 40px;
}

@media only screen and (max-width: 500px) {
  .app_website_HistorySection__historyOverlay {
    display: block;
  }
}

.app_website_HistorySection__historyOverlayColumn1 h2 {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: bold;
}

.app_website_HistorySection__historyOverlayColumn1 p,
.app_website_HistorySection__historyOverlayColumn2 p {
  color: var(--header-color1);
}



/* src/app/website/NeonGlowOverlay.module.css */
.app_website_NeonGlowOverlay__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Body path: ~2450px total ── */
/* Spark A — forward, medium pace */
.app_website_NeonGlowOverlay__bodyA {
  stroke-dasharray: 80 2420;
  animation: bodyFwd 7s linear infinite;
}
/* Spark B — forward, faster, offset ~40% along path */
.app_website_NeonGlowOverlay__bodyB {
  stroke-dasharray: 50 2450;
  animation: bodyFwd 5.4s linear infinite;
  animation-delay: -2.2s;
}
/* Spark C — reverse direction, offset ~58% along path */
.app_website_NeonGlowOverlay__bodyC {
  stroke-dasharray: 65 2435;
  animation: bodyRev 9.2s linear infinite;
  animation-delay: -3.8s;
}

/* ── Stool paths: ~800px total each ── */
.app_website_NeonGlowOverlay__stoolL {
  stroke-dasharray: 40 840;
  animation: stoolFwd 4.2s linear infinite;
  animation-delay: -0.9s;
}
.app_website_NeonGlowOverlay__stoolR {
  stroke-dasharray: 40 840;
  animation: stoolFwd 5.1s linear infinite;
  animation-delay: -2.8s;
}

/* ── Table front edge: ~700px total ── */
.app_website_NeonGlowOverlay__tableE {
  stroke-dasharray: 60 760;
  animation: tableFwd 5.6s linear infinite;
  animation-delay: -1.5s;
}

@keyframes bodyFwd {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -2500; }
}
@keyframes bodyRev {
  from { stroke-dashoffset: -2500; }
  to   { stroke-dashoffset: 0; }
}
@keyframes stoolFwd {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -880; }
}
@keyframes tableFwd {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -820; }
}



/* src/app/website/StatisticsSection.module.css */
.app_website_StatisticsSection__statisticContainer {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.app_website_StatisticsSection__statisticContainerCard {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.app_website_StatisticsSection__statisticContainerCard h5,
.app_website_StatisticsSection__statisticContainerCard h6 {
  text-align: left;
}
.app_website_StatisticsSection__statisticContainerCard h5 {
  font-size: 24px;
  padding: 0;
  margin: 0;
}
.app_website_StatisticsSection__statisticContainerCard h6 {
  font-size: 14px;
  padding: 0;
  margin: 12px 0 0 0;
}



/* src/app/website/TechnologiesSection.module.css */
.app_website_TechnologiesSection__technologiesColumn {
  margin: auto;
}

.app_website_TechnologiesSection__technologiesColumn,
.app_website_TechnologiesSection__cardWithImageContainer {
  max-width: 600px;
}

@media only screen and (max-width: 500px) {
  .app_website_TechnologiesSection__technologiesColumn {
    max-width: var(--size-column);
    grid-template-columns: none;
  }
}


