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

body {
font-family: times-new-roman, sans-serif;
font-size: 100%;
line-height: 144%;
background-color: #251a3b;
color: #c3e3f7;
margin: 0;
padding: 0;
}

a {
color: #c3e3f7;
}

a:hover,
 a:focus {
color: #f7c3f1;
}

.site-header {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1rem;
padding: 1rem;
background-color: #000000;
border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.logo-image {
max-width: 220px;
height: auto;
border-radius: 0.75rem;
}

.site-title {
color: #f7c3f1;
font-size: 1.45rem;
margin: 0;
}

.page-layout {
display: flex;
gap: 1rem;
padding: 1rem;
}

.sidebar {
flex: 0 0 230px;
background: rgba(0, 0, 0, 0.75);
padding: 1rem;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 0.9rem;
}

.sidebar h2 {
color: #f7c3f1;
margin-top: 0;
}

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

.sidebar li {
margin: 0.65rem 0;
}

.sidebar a {
color: #c3e3f7;
text-decoration: none;
}

.sidebar a:hover,
.sidebar a:focus {
color: #f7c3f1;
}

.content {
flex: 1 1 0;
min-width: 280px;
background: rgba(0, 0, 0, 0.6);
padding: 1.2rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.08);
}

.content h3 {
margin-top: 0;
color: #f7c3f1;
}

.page-links {
width: 100%;
border-collapse: collapse;
margin-top: 1.25rem;
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.03);
}

.page-links th,
.page-links td {
padding: 0.9rem 1rem;
border: 1px solid rgba(255, 255, 255, 0.08);
text-align: left;
}

.page-links th {
background: rgba(255, 255, 255, 0.08);
color: #f7c3f1;
}

.page-links tr {
background: rgba(0, 0, 0, 0.55);
}

.page-links tr:nth-child(even) {
background: rgba(255, 255, 255, 0.03);
}

.page-links caption {
caption-side: top;
padding: 0.75rem 0;
text-align: left;
font-weight: 700;
color: #f7c3f1;
}

.site-footer {
padding: 1rem;
text-align: center;
background: #000000;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

table.site-header,
table.site-footer {
border: none;
}

@media (max-width: 860px) {
.page-layout {
display: block;
}

.sidebar {
width: auto;
margin-bottom: 1rem;
}

.site-header {
justify-content: center;
text-align: center;
}

.logo-image {
margin: 0 auto;
}
}

/* light box css */

.thumb {
max-width: 200px;
cursor: pointer;
}

#lightbox {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.8);
justify-content: center;
align-items: center;
z-index: 9999;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
}
