:root {
  --color-gray-1: rgb(142, 142, 147);
  --color-gray-2: rgb(99, 99, 102);
  --color-gray-3: rgb(72, 72, 74);
  --color-gray-4: rgb(58, 58, 60);
  --color-gray-5: rgb(44, 44, 46);
  --color-gray-6: rgb(28, 28, 30);
  --color-blue: rgb(0, 100, 220);
  --color-blue-hover: rgb(10, 132, 255);
  --color-green: rgb(48, 209, 88);
  --color-indigo: rgb(94, 92, 230);
  --color-orange: rgb(255, 159, 10);
  --color-pink: rgb(255, 55, 95);
  --color-purple: rgb(191, 90, 242);
  --color-red: rgb(255, 69, 58);
  --color-teal: rgb(100, 210, 255);
  --color-yellow: rgb(255, 214, 10);
  /* standard */
  --background-color: rgb(13, 17, 23);
  --secondary-background-color: rgb(40,41,61);
  --tertiary-background-color: rgb(85,87,112);
  --quaternary-background-color: rgb(142,144,166);
  --quinary-background-color: rgb(199,200,217);
  --elevated-background-color: var(--secondary-background-color);
  --foreground-color: rgb(255,255,255);
  --blockquote-background: var(--elevated-background-color);
  --secondary-label-color: rgb(199,200,217);
  --blockquote-foreground: var(--secondary-label-color);
  /* menu */
  --menu-item-color: rgb(150,153,177);
  --menu-item-hover-color: rgb(250,250,252);
  --menu-item-subscription-color: #555770;
  --menu-item-subscription-text-color: var(--button-text-color);
  --menu-item-subscription-hover-color: #7f7d9c;
  /* title */
  --title-color: rgb(240, 246, 252);
  --subtitle-color: rgb(85,87,112);
  /* buttons */
  --button-color: rgb(62,123,250);
  --button-text-color: var(--text-color);
  --button-hover-color: rgb(102,152,255);
  /* text */
  --header-color: #eeeeee;
  --section-line-color: rgb(85,87,112);
  --text-color: rgb(240, 246, 252);
  --light-text-color: rgb(135, 135, 135);
  --selected-text-color: var(--text-color);
  --selected-text-background-color: rgb(53,104,212);
  --placeholder-text-color: rgb(85,87,112);
  --link-color: rgb(62,123,250);
  --link-hover-color: var(--selected-text-background-color);
  /* blog */
  --blog-post-quantity-color: rgb(242,242,242);
  --blog-post-quantity-background-color: #ea8337; /* #f7773e */
  --blog-post-text-color: rgb(225,225,225);
  --blog-post-text-background-color: #41424c;

  /* tables */
  --table-background: rgb(44,45,66);
  --table-text-color: rgb(250,250,252);
  --table-border-color: rgb(68,70,91);
  --table-header-color: rgb(250,250,252);
  --table-header-background: rgb(40,41,61);
  /* mobile pricing table header */
  --mobile-pricing-edition-text-color: rgb(85,87,112);
  --mobile-pricing-edition-text-hover-color: var(--text-color);
  --mobile-pricing-edition-chosen-text-color: var(--text-color);
  --mobile-pricing-edition-chosen-underline-color: rgb(62,123,250);
  --mobile-pricing-edition-background-color: rgb(40,41,61);
  /* footer */
  --footer-item-color: rgb(85,87,112);
  --footer-item-hover-color: rgb(250,250,252);
  /* colors */
  --post-card-border-color: white;
  --header-title-color: #ffff00;
  --header-title-border-color: #ffd600;
  --main-title-color: var(--text-color);
}

::selection {
    color: var(--selected-text-color);
    background: var(--selected-text-background-color);
}

html
{
  color: var(--foreground-color);
  background-color: var(--background-color);
}

body {
  line-height: 1;
  font-family: "Inter";
  font-size: 20px;
  color: var(--foreground-color);
  background-color: var(--background-color);
  line-height: 1.75;
  letter-spacing: 0.008em;
  padding-bottom: 50px;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  font-variation-settings: 'wght' 400;
  font-family: 'Inter', sans-serif;
  color: var(--tertiary-background-color);
}

.navbar
{
    background-color: var(--background-color);
}

.navbar-item
{
    font-size: 14px;
    font-variation-settings: 'wght' 800;
    line-height: normal;
    font-family: 'Inter';
    cursor: pointer;
    color: var(--light-text-color);
}

.navbar-item:hover
{
    text-decoration: none;
    background-color: transparent !important;
    color: var(--menu-item-hover-color);
}

.navbar-item-icon
{
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    font-family: 'Material Symbols Outlined';
    cursor: pointer;
    color: var(--light-text-color);
}

.navbar-item-icon:hover
{
    text-decoration: none;
    background-color: transparent !important;
    color: var(--menu-item-hover-color);
}

.navbar-burger
{
    color: var(--light-text-color);
}

.header-title
{
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.header-title-text
{
  font-family: "Barlow Condensed";
  font-size: var(--header-title-font-size);
  font-variation-settings: 'wght' 700;
  font-weight: 700;
  color: var(--header-title-color);
  padding-left: 75px;
  padding-right: 75px;
  border-bottom: 2px solid var(--header-title-border-color);
  border-top: 2px solid var(--header-title-border-color);
  margin-bottom: 25px;
}

.main-title
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  text-align : center;
  font-family: "Barlow Condensed";
  font-size: var(--main-title-font-size);
  font-variation-settings: 'wght' 700;
  font-weight: 700;
  color: var(--main-title-color);
  padding-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
}

.sub-title
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  text-align : center;
  font-family: "Inter";
  font-size: var(--sub-title-font-size);
  font-variation-settings: 'wght' 500;
  font-weight: 500;
  color: var(--light-text-color);
  padding-bottom: 35px;
  margin-left: 15px;
  margin-right: 15px;
}

.github-button
{
  margin-top: 35px;
  margin-bottom: 15px;
  background-color: var(--color-blue);
}

.github-button:hover
{
  background-color: var(--color-blue-hover);
}

.github-button-text
{
  color: rgb(240, 246, 252);
  font-size: 14px;
  font-variation-settings: 'wght' 600;
  line-height: normal;
  font-family: 'Inter';
}

.main-container
{
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.main-section
{
  margin-top: 0px;
  padding-top: 25px;
}

.text-content
{
  padding-top: 15px;
}

.posts-header
{
  color: white;
  background-color: var(--light-text-color);
  font-family: 'Barlow Condensed', sans-serif;
  font-variation-settings: 'wght' 600;
  font-weight: 600;
  font-size: var(--posts-header-font-size);
  margin-top: var(--posts-header-margin-top);
  margin-bottom: var(--posts-header-margin-bottom);
  padding-left: 25px;
  margin-left: 5px;
  padding-right: 120px;
  font-style: italic;
}

.section-title
{
  color: var(--text-color);
  font-family: 'Barlow Condensed';
  font-size: var(--section-title-font-size);
  font-variation-settings: 'wght' 700;
  font-weight: 700;
  padding-bottom: 20px;
}

.section-text
{
  color: var(--text-color);
  font-size: var(--section-text-font-size);
  font-variation-settings: 'wght' 400;
  font-family: 'Inter';
  line-height: 1.6;
  font-kerning: auto;
  font-stretch: 100%;
  padding-bottom: 38px;
}

.cards-3-cols
{
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
text-align : center;
margin-top: 20px;
margin-bottom: 40px;
}
.cards-2-cols
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  text-align : center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.cards-1-cols
{
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
text-align : center;
}


@media screen and (min-width : 1280px)
{
  .content
  {
    max-width: 960px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .cards-3-cols{display: flex;}
  .cards-2-cols{display: none;}
  .cards-1-cols{display: none;}
  html
  {
    --header-title-font-size: 34px;
    --main-title-font-size: 96px;
    --sub-title-font-size: 18px;
    --section-title-font-size: 44px;
    --section-text-font-size: 18px;
    --posts-header-font-size: 22px;
    --posts-header-margin-top: 42px;
    --posts-header-margin-bottom: 32px;
    --about-me-title-font-size: 72px;
  }
}

@media screen and (max-width : 1280px)
{
  .content
  {
    max-width: 820px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .cards-3-cols{display: none;}
  .cards-2-cols{display: flex;}
  .cards-1-cols{display: none;}
  html
  {
    --header-title-font-size: 30px;
    --main-title-font-size: 84px;
    --sub-title-font-size: 18px;
    --section-title-font-size: 42px;
    --section-text-font-size: 18px;
    --posts-header-font-size: 20px;
    --posts-header-margin-top: 36px;
    --posts-header-margin-bottom: 30px;
    --about-me-title-font-size: 70px;
  }
  .posts-header
  {
     padding-left: 75px;
     padding-right: 75px;
     align-self: center;
  }
}

@media screen and (max-width : 768px)
{
  .content
  {
    margin-left: 5px;
    margin-right: 5px;
  }
  .cards-3-cols{display: none;}
  .cards-2-cols{display: none;}
  .cards-1-cols{display: flex;}
  html
  {
    --header-title-font-size: 28px;
    --main-title-font-size: 52px;
    --sub-title-font-size: 14px;
    --section-title-font-size: 28px;
    --section-text-font-size: 16px;
    --posts-header-font-size: 18px;
    --posts-header-margin-top: 28px;
    --posts-header-margin-bottom: 0px;
    --about-me-title-font-size: 58px;
  }
  .posts-header
  {
     padding-left: 50px;
     padding-right: 50px;
     align-self: center;
  }
}

.post-card
{
    margin-bottom: 35px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    width: 320px;
    cursor: pointer;
}

.post-card:hover
{
    border-style: solid;
    border-width: 2px;
    border-color: var(--light-text-color);
    background-color: var(--light-text-color);
}

.post-card-header-title
{
  color: var(--blog-post-quantity-color);
  font-size: clamp(60px, calc(60px + (96 - 60) * ((100vw - 600px) / (1600 - 600))), 96px);
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  line-height: normal;
  background-color: var(--blog-post-quantity-background-color);
  padding: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
  vertical-align: center;
}

.post-card-footer
{
    background-color: var(--blog-post-text-background-color);
  padding: 8px;
  color: var(--blog-post-text-color);
  font-size: clamp(14px, calc(14px + (20 - 14) * ((100vw - 600px) / (1600 - 600))), 20px);
  font-weight: 700;
  font-family: 'Ubuntu Condensed', sans-serif;
  line-height: normal;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: center;
  vertical-align: center;
}

.about-me-title
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  text-align : center;
  font-family: "Barlow Condensed";
  font-size: var(--about-me-title-font-size);
  font-variation-settings: 'wght' 700;
  font-weight: 700;
  color: var(--text-color);
  padding-top: 50px;
  margin-left: 15px;
  margin-right: 15px;
}


