
:root {
  --primary-background-d: #0e141b;
  --primary-foreground-d: #f2f5f7;
  --secondary-color-a : #3891A6;
  --secondary-color-b : #871D27;
  --secondary-color-c : #F18F01;
  --smallest-width: 320px;
  overscroll-behavior: none;
}


body
{
	margin: 0;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  background:var(--primary-background-d) ;
  color: var(--primary-foreground-d);
}

h2, h1
{
  margin-top: 60px;
}

.fontContent
{
  font-size: 1.25rem;
}

.fontTitle
{
  font-size: 3rem;
}

.fontSubTitle
{
  font-size: 2rem;
}

.fontNav
{
  font-size: 0.9rem;
}


.blog_title
{

  line-height: 3.5rem;
  margin-bottom: 5rem;
}

.blog_text
{

  margin-bottom: 2rem;
}


#mainPage
{
  display: flex;
  flex-direction: column;
}

#headerPage
{
  display: flex;
  flex-direction: column;
  margin-bottom: 100px; 
}

#navigation
{
	display: flex;
	justify-content: center;
	gap: 100px;
  padding-top: 1rem;
}
.mainNav
{
	background: none;
	border: 0;
	font-size: 1.3rem;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
  color: var(--primary-foreground-d);
  text-decoration: none;
}

#content
{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.8;
}


.contentCompressed
{
  max-width: 80rem;
}

.textParagraph
{
  padding: 0px 30px;
}

.mainNavIcon
{
	display: none;
}



.detailsDropDown
{
  width: 50%;
  margin: 20px auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background-color: var(--secondary-color-b);
  color: var(--primary-foreground-d);
}




.detailsDropDown > summary
{
  list-style: none;  
  cursor: pointer;
  padding: 20px;
}

.detailsDropDown > p
{
  padding: 20px;
}

.detailsDropDown > summary > aside > svg
{
  float: right;
  width: 24px;
  height: 24px;
  position: relative;
  top: -30px;
}

.detailsDropDown[open] > summary > aside > svg
{
  display: none;
}





.blogNav
{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 90%;
}

.blogNavLine
{
  border-top:1px gray solid;
  width: 100%;
  height: 1px;
}

.blogNavBar
{
  display: flex;
  flex-direction: row;
}

.blogNavBtn
{
  border: 0;
  width: 30px;
  height: 50px;
  flex-shrink: 0;
  background: none;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: center;
  transition: 0.1s ease-in;
}

.blogNavBtn:hover
{
  opacity: 0.5;
}

#blogCategories
{
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  flex-grow: 1;
  gap: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
}

#blogCategories::before, #blogCategories::after {
  content: '';  
  margin: auto; 
}

.blogCategory
{
  background: none;
  border: 0;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: var(--primary-foreground-d);
}

.blogCategorySelected
{
  width: 10px;
  height: 10px;
  background: var(--secondary-color-c);
  display: none;
}


.blog_ordered_list
{
  counter-reset: item;
}
.blog_ordered_list_item
{
  padding-bottom: 40px;
  border-bottom: 1px var(--primary-foreground-d) solid;
  margin-top: 30px;
  display: block;
}


.blog_ordered_list_item::before 
{
  display: flex;
  content: counter(item);
  counter-increment: item;
  background: var(--secondary-color-b);
  color: var(--primary-foreground-d);
  margin-left: -1em;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 1.25rem;
  font-weight: bold;
}

.blog_ordered_list_item_title
{
  display: block;
  font-weight: bold;
}
.blog_code_block
{
  background: #222;
  padding-left: 60px;
  white-space: nowrap;
  overflow-y: scroll;
  border-left: 5px solid var(--secondary-color-a);
  margin: auto;
}
.blog_code_block> code 
{
  white-space: pre;
  font-size: 1rem;
}


@media only screen and (max-width: 40rem) {
  #navigation {
    bottom: 0px;
    position: fixed;
    width: 100%;
    gap: 0px;
    padding-top: 0px;
  }
  .mainNav
  {
  	flex-grow: 1;
  	flex-basis: 0px;    
    background: black;    
    font-size: 0.9rem;
    background: var(--primary-foreground-d);
  }

  .mainNavIcon
  {
  	display: unset;
  	padding-top: 5px;
  	width: 25px;
  }
  .mainNavText
  {
  	padding-bottom: 5px;
    color: var(--primary-background-d);
  }
  #headerPage
  {
    background: unset;
    height: unset;
  }
  .fontTitle
  {
    font-size: 2.5rem;
  }
  .detailsDropDown
  {
    width: 100%;
  }
  .blogCategory
  {
    width: 100%;
  }
  #blogCategories
  {
    gap: unset;
  }
}























.flex_box
{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: none;
  border: 0px;
  gap:20px;
}

.flex_image
{
  
  min-height: 320px;
  min-width: 320px;
  flex-grow: 4;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
}

.flex_text
{
  min-width: 300px;
  width: 0px;
  flex-grow: 5;
  text-align: left;
  padding-left: 20px;
  margin-right: 20px;
}
#blogs
{
  display: flex;
  flex-direction: column;
  width: 1200px;
  gap: 80px;
  max-width: 100%;
  margin-top: 50px;
}


.flex_title
{
  margin-bottom: 10px;
  -webkit-line-clamp: 2;
  margin-top: 0px;
}
.flex_subtitle
{
  margin-bottom: 10px;
  -webkit-line-clamp: 1;
  margin-top: 0px;
  font-weight: normal;
}
.flex_description
{
  margin-bottom: 10px;
  -webkit-line-clamp: 4;
  margin-top: 0px;
}

.ellipsisClass 
{
    overflow: hidden;
    text-overflow: ellipsis;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    word-break: break-word;
}

.flex_readBtn
{
  color: var(--primary-background-d);
  background: var(--primary-foreground-d);
  border: 0;
  padding: 10px;
  cursor: pointer;
  transition: 0.1s ease-in;
}

.flex_readBtn:hover, .flex_readBtn:focus
{
  opacity: 0.5;
}



ul.blog_text > li 
{
  margin-bottom: 10px;
}

.blog_text > a 
{
  color: var(--primary-foreground-d);
}

.blog_text_inline_code
{
  list-style-type: none;
  word-break: break-word;
}

.blog_text_inline_code > li  
{
  padding: 10px 30px;
}

.blog_return
{
  cursor: pointer;
  background: none;
  border: 0;
  background: url('/images/general/back_button.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  transition:  0.1s ease-in;
  display: none;
}

.blog_return:hover,.blog_return:focus
{
  opacity: 0.5;
}

.blog_content
{
  width: 80%;
  padding-top: 10px;
  margin: 0 auto;
  line-height: 1.8;
}


.blog_box
{
  color: var(--primary-foreground-d);
  background-color: var(--secondary-color-b);
  padding:  50px;
}

.blog_files
{
  color: var(--primary-foreground-d);
  background-color: var(--secondary-color-b);
  padding:  50px;
  display: flex;
  flex-direction: column;
}


.blog_file_holder
{
  display: flex;
  flex-direction: column;
}



.blog_file_name 
{
  display: inline-block;
  height: inherit;
  line-height: 40px;
  color: var(--primary-foreground-d);      
  cursor: pointer;
  flex-grow: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog_file_download_holder
{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 30px;
}

.blog_file_download
{
  color: var(--primary-background-d);
  margin-top: 30px;
  background-color: var(--primary-foreground-d);
  padding: 10px 10px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}

.blog_image
{
  text-align: center;
}

.blog_image img
{
  width: 100%;
  height: auto;
}

.blog_image_caption
{
  margin-top: 10px;
}



.blog_file_list
{
  list-style-type: none;
}

.blog_file_list_item
{
  margin: 10px 0;
  text-decoration: none;
  color: var(--primary-foreground-d);
}

.blog_file_list_item:before
{
  content: url('../images/blog/file_icon.png') ;
  margin-right: 10px;
}


.blog_file_list_item_link
{

}


.emptyContent
{
  width: 100%;
  height: 100px;
}

#about_content
{
  display: flex;
  flex-direction: column;
  width: 1200px;
  gap: 80px;
  max-width: 100%;
  margin-top: 50px;
}

#about_image_container
{
  min-height: 320px;
  min-width: 320px;
  flex-grow: 1;
  text-align: center;
}

#about_image_container > img 
{
  width: 320px;
  height: auto;
}

#about_description
{
  min-width: 300px;
  width: 0px;
  flex-grow: 9;
  text-align: left;
  padding-left: 20px;
  margin-right: 20px;
}

#about_description > p 
{
  margin:0;
}

#about_me_social
{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

#about_me_social > *
{
  width: 70px;
  height: 70px;
  background: none;
  border: 0;
  cursor: pointer;
  background: var(--primary-foreground-d);
  border-radius: 35px;
  background-size: 50% auto;
  background-position: center;
  background-repeat: no-repeat;
}

#error_404
{
  flex-direction: column;
  align-items: center;
}

#error_404 > span
{
  text-align: center;
  padding: 20px;
}

#error_404 > img 
{
  width: 80%;
  max-width: 600px;
}