:root {
  --gray: rgb(40,40,40);
  --border-color: rgb(10, 10, 10);
  --hover-border-color: rgb(142, 192, 124);
  --light-orange: #edab50;
  --light-yellow: #ffeb57;
  --yellow: #ffc825;
  --dark-yellow: #ffa214;
  --darker-yellow: #ed7614;

  --white: #ffffff;
  --lighter-blue-gray: #c7cfdd;
  --light-blue-gray: #92a1b9;
  --blue-gray: #424c6e;
  --dark-blue-gray: #2a2f4e;
  --darker-blue-gray: #1a1932;
  --darkest-blue-gray: #0e071b;
  --black: #000000;

  --darker-gray: #131313;
  --dark-gray: #272727;

  --light-gray: #5d5d5d;
  --lighter-gray: #858585;
  --bright-gray: #b4b4b4;

  --darkest-blue: #00396d;
  --darker-blue: #0069aa;
  --dark-blue: #0098dc;
  --blue: #00cdf9;
  --light-blue: #0cf1ff;
  --lighter-blue: #94fdff;

  --lighter-red: #f68187;
  --light-red: #f5555d;
  --red: #ea323c;
  --dark-red: #c42430;
  --darker-red: #891e2b;
  --darkest-red: #571c27;

  --lighter-green: #d3fc7e;
  --light-green: #99e65f;
  --green: #5ac54f;
  --dark-green: #33984b;
  --darker-green: #1e6f50;
  --darkest-green: #0c2e44;

  --light-orange: #edab50;
  --orange: #e07438;
  --dark-orange: #c64524;
  --darker-orange: #8e251d;
}




@font-face {
  font-family: 'Fira Code';
  src: url('woff2/FiraCode-Medium.woff2') format('woff2'),
    url("woff/FiraCode-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'DaysOne';
  src: url('DaysOne-Regular.ttf') format('ttf');
  font-weight: 250;
  font-style: normal;
}

body {
  font-family: 'Fira Code';
  background-color: rgb(50,48,47);
  color: white;
  margin: 0;
}

a:link, a:visited {
  color: #3c9ebc;
}
a:hover, a:visited:hover {
  color: var(--hover-border-color);
}




.navbar {
  overflow: hidden;
  background-color: #333;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  transition: 0.5s;
}
.dropbtn.active {
  background-color: rgb(152,151,26);
  color: white;
}

#navbar a:hover, .dropdown:hover .dropbtn {
  background-color: var(--hover-border-color);
}

.dropdown-content {
  display: flex;
  opacity: 0;
  flex-direction: column;
  position: absolute;
  background-color: var(--gray);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  display: flex;
  max-height: 300%;
  transition: opacity 0s, max-height 0.3s ease-in;
}




.terminal {
  background-color: rgb(40,40,40);
  height: 60%;
  border-radius: 15px;
  border: 1px solid rgb(142, 192, 124);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.terminal p {
  display: inline;
}
.commandline {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
}


.text {
  margin-left: 20%;
}

.header {
  padding: 30px;
  text-align: center;
}

#no_color_navbar {
  z-index: 1;
  position: sticky;
  top: 45;
  overflow: hidden;
  background-color: rgb(40,40,40);
}

#navbar {
  z-index: 1;
  position: sticky;
  top: 0;
  display: flex;
  background-color: rgb(40,40,40);
}


#navbar a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  transition: 0.5s;
}
#navbar a:hover {
  background-color: rgb(60,56,54);
  color: white;
}

#navbar a.active {
  background-color: rgb(152,151,26);
  color: white;
}
#navbar a.active:hover {
  background-color: rgb(184,187,38);
}

#navbar select {
  float: left;
  display: block;
  color: #f2f2f2;
  background-color: rgb(40,40,40);
  border-color: rgb(40,40,40);
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 17px;
  transition: 0.5s;
}
#navbar select:hover {
  background-color: rgb(60,56,54);
  color: white;
}


.content {
  padding: 16px;
}

.fullw {
  max-width: 80%;
}
.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.right {
  display: block;
  text-align: center;
  float: right;
}
.rightflex {
  margin-left: auto;
  order: 2;
}





.content {

	width: 60%;
  aspect-ratio: 16/9;
	background-size: cover;
	background-repeat: no-repeat;

  opacity: 0.8;
	

  display: block;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2%;


	padding: 0.5rem;
	box-sizing: border-box;
	border-radius: 0.7rem;
	border: 2px solid var(--border-color);
	box-shadow: 0 0rem 2rem rgba(0, 0, 0, 0.112);
	transition: 0.2s;
  position: relative;
}
.content::after {
  content: "";
  background-image: var(--preview);
  background-size: cover;
	background-repeat: no-repeat;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}


.content:hover {
  width: 62%;
  aspect-ratio: 15/8.17;
  border-color: var(--hover-border-color);
  opacity: 1;
}

.content #date {
  font-size: 32px;
  display:inline-block;
  text-align:right;
  float: right;
}

.tags {
  width: 100%;
  display: inline-block;
}
.tag {
  text-align: center;
  display: inline-block;
  border-radius: 0.5em;
  margin-right: 0.5em;
}


.post {
  width: 75%;
  background-color: rgba(20,20,20,0.8);
  border-radius: 0.5em;
  border: 1px solid;
  border-color: var(--border-color);
  transition: 0.5s;
}
.post:hover {
  border-color: var(--hover-border-color);
}
.post p {
  margin-left: 2%;
  img {
    max-width: 100%;
    max-height: 100%;
  }
}
.post h2 {
  width: 100%;
  border-bottom: 1px solid;
  text-indent: 5%;
}

@media only screen and (max-width: 600px) {
  .text {
    margin-left: 0%;
  }
  .post {
    width: 95%;
  }
  .content {
    width: 80%;
  }
  .content:hover {
    width: 90%;
  }
}

.third {
  width: 33.3333333333333333%;
  border: 1px solid var(--border-color);
  transition: 1s;
}
.third:hover {
  border-color: var(--hover-border-color);
}

.center_h {
  display: flex;
  height: 81.5vh;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vh;
}

.center_no_h {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vh;
}


.wide_button {
  width: 80%;
  height: 8%;
  border-radius: 8px;
  border-width: 2px;
  margin-bottom: 0.8vh;
  border-color: var(--border-color);
  background-color: var(--gray);
  color: var(--white);
  transition: 0.5s;

  font-size: 18px;
}

.form_element {
  width: 100%;
  height: 48%;
  border-radius: 8px;
  border-width: 2px;
  margin-bottom: 0.8vh;
  border-color: var(--border-color);
  background-color: var(--lighter-gray);
  color: var(--white);
  transition: 0.5s;

  font-size: 18px;
}
.form_button {
  width: 100%;
  height: 60%;
  border-radius: 8px;
  border-width: 2px;
  margin-bottom: 0.8vh;
  border-color: var(--border-color);
  background-color: var(--gray);
  color: var(--white);
  transition: 0.5s;

  font-size: 18px;
}


.row_holder {
  display: block;
}
.row_holder .form_element {
  width: 60%;
}
.row_holder .form_text {
  width: 40%;
  display: inline-block;
}

.form_text {
  padding: 45px 0;
  margin: auto;
  width: 100%;
  height: 10%;
  border-radius: 8px;
  border-width: 2px;
  margin-bottom: 0.8vh;
  border-color: black;
  background-color: var(--gray);
  color: var(--white);
  transition: 0.5s;

  font-size: 18px;
}


.wide_button:hover {
  border-color: var(--hover-border-color);
  width: 82.5%;
}

.sections {
  display: flex;
}

@media only screen and (max-width: 600px) {
  .wide_button {
    height: 24%;
    width: 80%;
  }
  .wide_button:hover {
    width: 85%;
  }
  .third {
    width: 100%;
  }
  .sections {
    display: block;
  }
}

.fright {
  float: right;
  display: flex;
}
.right_images {
  display: block;
  height: 100%;
  
  margin: 0 auto;
  img {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    margin-right: 60px;
    max-width: 30vh;
    max-height: 30vh;
  }
}
.rot90 {
  transform: rotate(-90deg);
  max-height: 15vh;
  margin-right: 5vh;
  margin-top: 5vh;
  transform-origin: top right;
}


.lang_table {
  margin: 0 auto;
  border: 1px solid black;
  td, th {
    border: 1px solid black;
    vertical-align:middle;
    text-align:center;
  }
  width: 75%;
  
  img {
    display:block; margin:0 auto;
    width:  110px;
    height: 110px;
    object-fit: contain;
  }
}



.modal {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  background-color: rgb(40,40,40);
  margin: auto;
  padding: 20px;
  border: 1px solid var(--border-color);
  width: 80%;
  transition: 0.5s;
}
.modal-content:hover {
  border: 3px solid var(--hover-border-color);
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 52px;
  transition: 0.2s;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #ff0000;
  text-decoration: none;
  cursor: pointer;
}
