@charset "UTF-8";
/* Font variables */
/* Font size variables */
/* Color variables */
/* Size variables */
:root {
  --font-scale-factor: 1.125;
  /* Scaling factor for each level up */
  --default-font-size: 16px;
  /* Base size for smallest text elements */
  /* Increase sizes progressively */
  --h6-font-size: calc(var(--default-font-size) * var(--font-scale-factor));
  --h5-font-size: calc(var(--h6-font-size) * var(--font-scale-factor));
  --h4-font-size: calc(var(--h5-font-size) * var(--font-scale-factor));
  --h3-font-size: calc(var(--h4-font-size) * var(--font-scale-factor));
  --h2-font-size: calc(var(--h3-font-size) * var(--font-scale-factor));
  --h1-font-size: calc(var(--h2-font-size) * var(--font-scale-factor));
  /* Use smaller font sizes for certain elements */
  --footer-font-size: calc(var(--default-font-size) / var(--font-scale-factor));
}

/* Apply sizes to elements */
body {
  font-size: var(--default-font-size);
}

input {
  font-size: var(--default-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h1 {
  font-size: var(--h1-font-size);
}

body > footer {
  font-size: var(--footer-font-size);
}

:root {
  --highlight-color: deeppink;
  --lowlight-color: #aaa;
  --background-color: black;
  --text-color: white;
}

.highlight-color {
  color: var(--highlight-color);
}

.lowlight-color {
  color: var(--lowlight-color);
}

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

.text-color {
  color: var(--text-color);
}

/* Apply sizes to elements */
body {
  color: var(--text-color);
  background: var(--background-color);
}

code {
  color: var(--lowlight-color);
}

a {
  color: var(--text-color);
}

a:hover {
  color: var(--highlight-color);
}

input, select {
  color: var(--text-color);
  background: var(--background-color);
}

input:focus, select:focus {
  outline: none;
  background: transparent;
  box-shadow: none;
  caret-color: var(--highlight-color);
}

select {
  border: 1px solid var(--lowlight-color);
  padding: 1px;
  padding-left: 5px;
}

button {
  background: transparent;
  cursor: pointer;
}

:root {
  --default-font-family: monospace;
}

body {
  font-family: var(--default-font-family);
}

input {
  font-family: var(--default-font-family);
}

ol.inline, ul.inline, ol.inline > li, ul.inline > li {
  display: inline;
  margin: 0;
  padding: 0;
}

:root {
  --main-width: 90%;
  --main-height: 100%;
  --main-margin: 0 auto;
}

main {
  width: var(--main-width);
  height: var(--main-height);
  margin: var(--main-margin);
}

.size-8px {
  width: 8px;
  height: 8px;
}

.size-16px {
  width: 16px;
  height: 16px;
}

.size-24px {
  width: 24px;
  height: 24px;
}

.size-32px {
  width: 32px;
  height: 32px;
}

:root {
  --unordered-list-style-type: "· ";
}

li {
  list-style-type: var(--unordered-list-style-type);
}

nav {
  position: relative;
  display: inline-block;
}

/* Hide the menu initially */
nav div {
  position: absolute;
  top: 40px;
  right: 8px;
  padding: 5px;
  min-width: 205px;
  background-color: black;
  border: 1px solid white;
  color: white;
}

nav ul {
  list-style: none;
  padding: 0;
  padding-left: 5px;
}

/* Style the toggle button */
nav button {
  background: none;
  border: none;
  cursor: pointer;
}

nav button:hover {
  color: deeppink;
}

/* Style list items */
nav li {
  width: 100%;
}

/* Ensure links look nice */
nav a {
  text-decoration: none;
}

.featured-image {
  display: block;
  width: auto;
  margin: auto;
  max-width: 100%;
  max-height: 500px;
  height: auto;
}

header > div {
  display: grid;
  grid-template-columns: auto auto 1fr; /* First two auto-sized, third takes remaining space */
  align-items: center; /* Align items vertically */
  gap: 20px; /* Adjust spacing between elements */
}

header > div > div:nth-child(1) {
  justify-self: start; /* Align first two to the left */
}

header > div > div:nth-child(2) {
  justify-self: start; /* Align first two to the left */
}

header > div > div:nth-child(3) {
  justify-self: end; /* Align third to the right */
}

/* Align search input to bottom */
header input {
  height: 100%; /* Ensures it takes full height of parent */
}

article > ul > li {
  margin-top: 10px;
}

.hidden {
  display: none;
}

article img {
  display: block;
  width: auto;
  margin: auto;
  max-width: 100%;
  max-height: 500px;
  height: auto;
}

.home .container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home .container .left-section {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  min-width: 300px;
}
.home .container .right-section {
  flex: 1;
  min-width: 300px;
}
.home .container .right-section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5em;
}
.home .container .box {
  padding: 20px;
  text-align: left;
  min-width: 0; /* Allow flex items to shrink below content size */
}
.home .container .left-section .box {
  padding: 20px;
}
.home .container .right-section .box {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
}
.home .container .icon {
  display: block;
}
.home .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.home .container .icon-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5%;
  word-wrap: break-word;
}
.home .container .icon-container a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.home .container img {
  width: 33vw;
  height: 33vw;
  min-height: 170px;
  min-width: 170px;
  max-height: 250px;
  max-width: 250px;
}
.home .container img.size-24px {
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  min-height: 24px;
  min-width: 24px;
  max-height: 24px;
  max-width: 24px;
}
@media (max-width: 900px) {
  .home .container {
    flex-direction: column;
    align-items: stretch;
  }
  .home .container .left-section {
    align-items: center;
    justify-content: center;
  }
  .home .container .right-section {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .home .container .left-section {
    flex-direction: column;
    align-items: center;
  }
  .home .container img {
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }
}
@media (max-width: 400px) {
  .home .container img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
  }
}

img.favicon {
  width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  min-width: 24px !important;
  max-height: 24px !important;
  max-width: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/*# sourceMappingURL=styles.css.map */