html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

[hidden] {
  display: none;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
  -webkit-text-decoration-skip: ink; /* 3 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button {
  text-transform: none;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button; /* 1 */
}

button::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner,
[type=button]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 3 */
  max-width: 100%; /* 1 */
  padding: 0; /* 1 */
  white-space: normal; /* 2 */
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 1 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.article {
  display: block;
  width: 100%;
  margin-bottom: 3.0517578125rem;
  line-height: 1.6;
}
.article > * + * {
  margin-top: 1.25rem;
}
.article header {
  margin-bottom: 2.1836601343rem;
  border-bottom: 1px solid rgba(49, 45, 40, 0.5);
  padding-bottom: 1.5625rem;
}
.article footer {
  margin-top: 3.0517578125rem;
  padding-top: 2.1836601343rem;
  border-top: 1px solid rgba(49, 45, 40, 0.3);
  font-size: 0.9em;
  opacity: 0.8;
}
.article img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: rgb(48.8, 50.6, 40.3);
  border: 1px solid #312d28;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card header, .card .card-header {
  padding: 2.1836601343rem;
  background-color: rgba(207.2, 209.9, 182.5, 0.03);
  border-bottom: 1px solid #312d28;
}
.card header h1, .card header h2, .card header h3, .card header h4, .card header h5, .card header h6, .card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6 {
  margin: 0;
}
.card section, .card .card-body {
  padding: 2.1836601343rem;
  flex: 1;
}
.card footer, .card .card-footer {
  padding: 1.5625rem 2.1836601343rem;
  background-color: rgba(207.2, 209.9, 182.5, 0.02);
  border-top: 1px solid #312d28;
}
.card.interactive:hover {
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button,
.btn {
  display: inline-block;
  padding: 1.5625rem 2.1836601343rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: #008000;
  color: rgb(93, 89.25, 79.5);
  border: 1px solid #FFA500;
}
.button:hover,
.btn:hover {
  background-color: #FFA500;
  color: rgb(159, 155.625, 138.75);
}
.button:disabled,
.btn:disabled {
  background-color: rgb(159, 155.625, 138.75);
  color: rgb(93, 89.25, 79.5);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-secondary {
  background-color: #FFA500;
  color: rgb(159, 155.625, 138.75);
  border-color: #008000;
}
.btn-secondary:hover {
  background-color: #008000;
  color: rgb(93, 89.25, 79.5);
}

.btn-outline {
  background: transparent;
  color: #008000;
  border: 1px solid #008000;
}
.btn-outline:hover {
  background: #008000;
  color: rgb(93, 89.25, 79.5);
}

.footer {
  width: 100%;
  margin-top: auto;
  background-color: rgb(48.5, 50.6, 51.5);
  border-top: 1px solid rgba(207.2, 209.9, 182.5, 0.1);
  padding: 2.1836601343rem 0;
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 3.8146972656rem;
  margin: 0 auto;
  padding: 0 2.1836601343rem;
  gap: 1.5625rem;
}
.footer .footer-links {
  display: flex;
  gap: 2.1836601343rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .footer-links a {
  font-size: 0.9rem;
  color: inherit;
}
.footer .footer-links a:hover {
  color: #FF69B4;
}
.footer .footer-copy {
  font-size: 0.75rem;
  opacity: 0.7;
}

.header {
  flex: 1;
  display: contents;
}

main {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 512px) {
  main {
    padding-bottom: 100px;
  }
}

#main-content {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5625rem;
}
@media (max-width: 512px) {
  #main-content {
    padding-bottom: clamp(5rem, 10vh, 8rem);
  }
}

.navbar {
  display: flex;
  background-color: rgb(48.8, 50.6, 40.3);
  color: rgb(206.9, 209.9, 193.7);
  position: relative;
  z-index: 1000;
  box-sizing: border-box;
}
@media (max-width: 512px) {
  .navbar {
    display: none !important;
  }
}
@media (min-width: 512px) {
  .navbar {
    width: 4.5rem;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    flex-direction: column;
    border-right: 1px solid rgba(206.9, 209.9, 193.7, 0.1);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex-shrink: 0;
  }
  .navbar:hover {
    width: 15rem;
  }
  .navbar .navbar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15rem;
    height: 100%;
    padding: 2.1836601343rem 0;
  }
  .navbar .navbar-brand {
    color: rgb(206.9, 209.9, 193.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    padding: 0 1rem;
  }
  .navbar .navbar-brand img {
    height: 2.5rem;
    transition: transform 0.2s ease;
  }
  .navbar .navbar-brand label {
    display: none;
    margin-left: 1.5625rem;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 700;
  }
  .navbar:hover .navbar-brand label {
    display: block;
  }
  .navbar .navbar-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
    padding: 0 0.6rem;
    gap: 1rem;
  }
  .navbar .navbar-menu li {
    width: 100%;
  }
  .navbar .navbar-menu li a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: rgb(206.9, 209.9, 193.7);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
  }
  .navbar .navbar-menu li a span {
    font-size: 1.5rem;
    min-width: 2.5rem;
    text-align: center;
  }
  .navbar .navbar-menu li a label {
    opacity: 0;
    margin-left: 0.5rem;
    transition: opacity 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
  }
  .navbar .navbar-menu li a:hover {
    color: #2c659b;
    background-color: rgba(206.9, 209.9, 193.7, 0.08);
  }
  .navbar:hover .navbar-menu li a label {
    opacity: 1;
  }
}

.mobile-thumb-nav {
  display: none;
}
@media (max-width: 512px) {
  .mobile-thumb-nav {
    display: grid !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    background-color: rgb(48.8, 50.6, 40.3);
    border-top: 1px solid rgba(206.9, 209.9, 193.7, 0.1);
    padding-bottom: env(safe-area-inset-bottom, 0.5rem);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .mobile-thumb-nav .thumb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgb(206.9, 209.9, 193.7);
    padding: 0.6rem 0;
    font-size: 0.7rem;
  }
  .mobile-thumb-nav .thumb-link span {
    font-size: 1.4rem;
  }
  .mobile-thumb-nav .thumb-link label {
    margin-top: 2px;
  }
  .mobile-thumb-nav .thumb-link:active {
    color: #2c659b;
  }
  .mobile-thumb-nav .thumb-action {
    background-color: #FFFF00;
    color: #000;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    top: -1.2rem;
    margin-bottom: -1.2rem;
    justify-self: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .mobile-thumb-nav .thumb-action:active {
    transform: scale(0.95);
  }
}

.navbar, .main, .footer {
  border: solid #312d28;
  background-color: rgb(48.8, 50.6, 40.3);
  color: rgb(207.2, 209.9, 182.5);
}

.footer {
  align-self: anchor-center;
  text-align: center;
}

.main {
  padding: 2.1836601343rem;
  margin: 2.1836601343rem;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Inter, sans-serif";
  background-color: rgb(48.5, 50.6, 51.5);
  color: rgb(207.2, 209.9, 182.5);
  line-height: 1.6;
  min-height: 100vh;
}
@media (min-width: 512px) {
  body {
    flex-direction: row;
    align-items: flex-start;
  }
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display, serif";
  font-weight: 700;
  line-height: 1.6;
  color: #FFFF00;
  margin-bottom: 2.1836601343rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  line-height: 1.6;
  margin: 0;
}

a {
  color: rgb(228, 210.3, 196.2);
  text-decoration: none;
}
a:hover, a:focus {
  color: #FF69B4;
}
a:active {
  color: rgb(69.6, 51, 54);
}

.view-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  width: 100%;
  align-items: center;
}

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