.alert,
.error,
.danger {
  color: red !important;
}

.notice {
  color: green;
}

.gold {
  color: goldenrod;
}

.gray {
  color: gray;
}

.album .album-photos {
  column-count: 4;
  column-gap: 12px;
}
.album .album-photos img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  display: block;
  border-radius: 8px;
  break-inside: avoid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.album .album-photos a {
  margin: 0;
}
.album div {
  margin-top: 10px;
}

.remove-photo-div {
  display: flex;
  gap: 10px;
}

.album-preview {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}
.album-preview .preview-island {
  position: relative;
  max-width: 90vw;
  height: 80vh;
  background-color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.album-preview .preview-island .image-container {
  padding: 30px;
  width: 100%;
  height: 100%;
}
.album-preview .preview-island .image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.album-preview .close-btn {
  z-index: 101;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: white;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .album .album-photos {
    column-count: 3;
  }
}
@media (max-width: 700px) {
  .album .album-photos {
    column-count: 2;
  }
}
@media (max-width: 500px) {
  .album .album-photos {
    column-count: 1;
  }
}
form {
  max-width: 800px;
}
form fieldset {
  padding: 15px;
}
form div {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
form div label {
  flex-grow: 1;
  max-width: 180px;
}
form div input {
  flex-grow: 1;
  min-width: 100px;
  padding: 4px;
  border: 0;
  border-bottom: 1px solid #222;
}
form div input[type=submit] {
  margin-top: 15px;
  border: 1px solid #222;
}
form div input, form div label, form div textarea {
  font-size: 1.25rem;
  padding: 10px;
}

header {
  background-color: #2d3e50;
  color: #f5f5f5;
  min-height: 40px;
  font-size: 1.3rem;
}
header nav {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
}
header nav section {
  padding: 10px;
}
header nav section#banner {
  display: flex;
  gap: 10px;
  align-items: center;
}
header nav section#banner img {
  max-height: 80px;
  margin: 5px;
}
header nav a, header nav a:link, header nav a:visited {
  text-decoration: none;
  color: #f5f5f5;
}
header nav button {
  margin: 5px;
  padding: 5px 10px;
  cursor: pointer;
}
header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  margin: 20px 30px;
  cursor: pointer;
}
header nav ul li.icon {
  margin: 20px 10px;
}
header nav ul li#theme-toggle-light {
  display: inline-block;
}
header nav ul li#theme-toggle-dark {
  display: none;
}

#menu #menu-toggle, #menu .menu-hamburger {
  display: none;
}

@media (max-width: 1100px) {
  #menu li {
    margin: 20px 15px;
  }
}
@media (max-width: 900px) {
  #menu #menu-toggle:checked ~ #menu-hamburger span:nth-child(1) {
    transform: rotate(45deg) translateY(10px) translateX(2px);
  }
  #menu #menu-toggle:checked ~ #menu-hamburger span:nth-child(2) {
    transform: scaleY(0);
  }
  #menu #menu-toggle:checked ~ #menu-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px) translateX(2px);
  }
  #menu #menu-toggle:checked ~ #menu-items {
    transform: translateY(0);
    opacity: 1;
  }
  #menu #menu-hamburger {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: 30px;
    gap: 5px;
    cursor: pointer;
  }
  #menu #menu-hamburger span {
    background-color: #f5f5f5;
    height: 4px;
    border-radius: 2px;
    transition: transform 0.3s, background-color 0.3s;
  }
  #menu ul#menu-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2d3e50;
    font-size: 1.5rem;
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
  }
  #menu ul#menu-items li {
    display: block;
    text-align: center;
    margin: 30px;
  }
  #menu ul#menu-items li:hover {
    padding-left: 5px;
  }
  #menu ul#menu-items li a {
    display: block;
    width: 100%;
  }
  html header nav section#menu #menu-items li#theme-toggle-light {
    display: block;
  }
  html header nav section#menu #menu-items li#theme-toggle-dark {
    display: none;
  }
  html[data-theme=dark] header nav section#menu #menu-items {
    background-color: #222;
  }
  html[data-theme=dark] header nav section#menu #menu-items li#theme-toggle-light {
    display: none;
  }
  html[data-theme=dark] header nav section#menu #menu-items li#theme-toggle-dark {
    display: block;
  }
}
#login_form form {
  max-width: 600px;
}
#login_form form input:not([type=submit]) {
  width: 100%;
  margin: 10px 0;
  padding: 5px;
  font-size: 1.1em;
}
#login_form form input[type=submit] {
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 1.05rem;
  cursor: pointer;
}

#showcase .showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
#showcase .showcase-grid .showcase-item {
  margin-top: 15px;
  position: relative;
  text-align: center;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
#showcase .showcase-grid .showcase-item a {
  margin: 0;
}
#showcase .showcase-grid .showcase-item img {
  z-index: 8;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#showcase .showcase-grid .showcase-item div.overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.4;
  transition: opacity 0.3s;
  z-index: 9;
}
#showcase .showcase-grid .showcase-item a:hover > div.overlay {
  opacity: 1;
}
#showcase .showcase-grid .showcase-item h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
  width: 100%;
  color: #eee;
}

.cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #2d3e50;
  color: #f5f5f5;
  padding: 15px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
}
.cookie-consent-banner h3 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
}
.cookie-consent-banner p {
  margin: 0 0 10px 0;
  font-size: 1em;
}
.cookie-consent-banner button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.cookie-consent-banner button:hover {
  background-color: #45a049;
}
.cookie-consent-banner a, .cookie-consent-banner a:link, .cookie-consent-banner a:visited {
  color: #f5f5f5;
}

html[data-theme=dark] .cookie-consent-banner {
  background-color: #222;
  color: #f5f5f5;
}
html[data-theme=dark] .cookie-consent-banner a, html[data-theme=dark] .cookie-consent-banner a:link, html[data-theme=dark] .cookie-consent-banner a:visited {
  color: #f5f5f5;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/Lato-Thin-2ab415a6.ttf");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/Lato-Light-810ad1a7.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/Lato-Regular-3d716aad.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/Lato-Bold-8af8670c.ttf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/assets/Nunito-Variable-1592f4af.ttf");
  font-display: swap;
}
body {
  font-family: Nunito, Arial, Helvetica, sans-serif;
  font-size: 20px;
}
body h1, body h2, body h3, body h4, body h5, body h6, body header ul a {
  font-family: Nunito, Lato, Arial, Helvetica, sans-serif;
}
body h1 {
  font-size: 3rem;
  font-weight: 200;
}
body h2 {
  font-size: 2.6rem;
  font-weight: 300;
}
body h3 {
  font-size: 2.2rem;
  font-weight: 400;
}
body h4 {
  font-size: 2rem;
  font-weight: 500;
}
body h5 {
  font-size: 1.8rem;
  font-weight: 600;
}
body h6 {
  font-size: 1.4rem;
  font-weight: 700;
}

html[data-theme=dark] body {
  background-color: #222;
  color: #f5f5f5;
}
html[data-theme=dark] main {
  background-color: #3a3a3a;
  border-left: 4px solid #ccc;
  box-shadow: 5px 5px 5px #111;
  color: #f5f5f5;
}
html[data-theme=dark] main a, html[data-theme=dark] main a:link, html[data-theme=dark] main a:visited {
  color: #f5f5f5;
}
html[data-theme=dark] footer {
  color: #7A7A7A;
}
html[data-theme=dark] footer a, html[data-theme=dark] footer a:link, html[data-theme=dark] footer a:visited {
  color: #7A7A7A;
}
html[data-theme=dark] #social-media {
  display: none;
}
html[data-theme=dark] #social-media-dark {
  display: block;
}
html[data-theme=dark] table th, html[data-theme=dark] table td {
  border: 1px solid #666;
}
html[data-theme=dark] table th {
  background-color: #222;
  color: #f5f5f5;
}
html[data-theme=dark] header {
  background-color: #222;
  color: #f5f5f5;
}
html[data-theme=dark] header nav a, html[data-theme=dark] header nav a:link, html[data-theme=dark] header nav a:visited {
  color: #f5f5f5;
}
html[data-theme=dark] header nav li#theme-toggle-light {
  display: none;
}
html[data-theme=dark] header nav li#theme-toggle-dark {
  display: inline-block;
}
html[data-theme=dark] header nav section#menu #menu-icon span {
  background-color: #f5f5f5;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #fafafa;
  color: #222;
}

main {
  max-width: 1200px;
  background-color: white;
  margin: 20px auto;
  padding: 30px 50px;
  border-left: 4px solid #3d4c5d;
  box-shadow: 5px 5px 5px #dfdfdf;
  border-radius: 0 20px 20px 0;
}
main a, main a:link, main a:visited {
  margin: 5px;
  text-decoration: none;
  color: #3b5169;
}
main a:hover {
  color: #293848;
  text-decoration: underline;
}
main p {
  line-height: 1.9rem;
}
main button {
  margin: 5px;
  padding: 5px 10px;
  font-size: 1.05rem;
  cursor: pointer;
}
main button.big {
  padding: 10px 15px;
  font-size: 1.5rem;
}
main button.success {
  background-color: #009900;
  color: white;
  border: none;
  border-radius: 5px;
}
main button.success:hover {
  background-color: #00AA00;
}
main button.success:active {
  background-color: #00CC00;
}
main button.danger {
  background-color: #AA0000;
  color: white;
  border: none;
  border-radius: 5px;
}
main button.danger:hover {
  background-color: #BB0000;
}
main button.danger:active {
  background-color: #DD0000;
}

footer {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
  color: #3a3a3a;
}
footer a, footer a:link, footer a:visited {
  color: #3a3a3a;
}

#tags {
  margin-top: 10px;
}
#tags div {
  margin-top: 5px;
}

.action-row {
  margin: 10px;
}
.action-row div, .action-row button {
  margin: 10px 0;
}

.footnote {
  font-size: 0.9rem;
}

#about {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}
#about img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
}
#about div {
  max-width: 600px;
}

#social-media img, #social-media-dark img {
  max-width: 30px;
}

#social-media-dark {
  display: none;
}

table {
  border-collapse: collapse;
}
table th, table td {
  border: 1px solid #3d4c5d;
  padding: 10px 15px;
  text-align: center;
}
table th {
  background-color: #3d4c5d;
  color: #f5f5f5;
}

@media (max-width: 1200px) {
  main, html[data-theme=dark] main {
    border-left: 0;
    border-radius: 0;
  }
}

/*# sourceMappingURL=/assets/standard-d9115693.css.map */
