body {
    margin: 0;
    padding: 0;
  	font-size:20px;
  	line-height:30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f1f1f1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #000;
    line-height:50px;
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 32px
}

h4 {
    font-size: 30px
}

h5 {
    font-size: 28px
}

strong,
b {
    font-weight: 700
}

a,
a:hover {
    color: #00310b
}

p {
    margin-bottom: 15px;
}

table {
    width: 95%
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px
}

code {
    padding: 2px 5px;
    background-color: #c5c5c5;
    border-radius: 2px
}

pre {
    padding: 15px;
    border-radius: 8px
}

pre>code {
    all: unset
}

blockquote {
    border-left: 4px solid #00310b;
    padding: 0 0 0 20px;
    margin: 0;
    font-size: 20px;
}

hr {
    border: none;
    border-top: 2px solid #4d4d4d;
}

footer {
    padding: 20px 10px 20px 10px;
    background: #3996ff;
    color: #000;
    text-align: center;
    font-weight: 500;

}

footer a {
    text-decoration: none;
    color: rgb(var(--gray));
    margin: 8px;
    margin-bottom: 0px;
    font-weight: 500;
}

header {
    margin: 0 auto;
    background: #3996ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
    height: 80px;
    border-bottom: solid #000 1px;
}

body > header > h2 {
    display: inline-block;
    float: left;
    margin: 15px;
    margin-top: 12px;
}

body > header > h2 > a {
    color: #000;
    text-decoration: none;
}

.menu-toggle {
    display: inline-block;
    float: right;
    font-size: 30px;
    background: none;
    cursor: pointer;
    margin: 15px;
    color:#000;
}

.nav-links {
    display: block;
    position: fixed;
    top: 0;
    left: -2px;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #4d4d4d, #2c2c2c);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-right: 2px solid #de9e9e;
    overflow-x: hidden;
}

.nav-links a {
    display: block;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border:1px solid #585858;
}

.nav-links a:hover,
.nav-links a:focus {
    background-color: #228d4e;
    color: #ffffff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
}

.nav-links.expanded {
    width: 200px;
}

.nav-links a {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeIn 0.5s ease forwards;
}

.nav-links.expanded a {
    animation-delay: calc(var(--index) * 0.1s);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-consent {
    position: fixed;
    top: 330px;
    max-width: 400px;
    width: 80%;	
    left: 50%;
    transform: translateX(-50%);
    background-color: #dbdbdb;
    color: #000;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cookie-consent p {
    font-size: 20px;
}

.cookie-consent a {
    color: #000;
    text-decoration: none;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

.cookie-consent button {
    background-color: #00310b;
    display: inline-block;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 120px;
}

.cookie-consent button:hover {
    background-color: #005c14;
}

.cookie-consent button.reject-btn {
    background-color: #e04e4e;
}

.cookie-consent button.reject-btn:hover {
    background-color: #b03636;
}

main {
    max-width: 1000px;
    padding: 15px;
    margin: 0 auto;
    height: auto;
  	display:block;
}

.breadcrumbs {
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
    text-align: center
}

.breadcrumbs a {
    color: #000;
    text-decoration: none
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.title {
    margin-bottom: 0;
    padding: 10px 0 2px 0;
    text-align: center;
    line-height: 1
}

.title h1 {
    margin:10px;
}

.date {
    margin-top: 20px;
    color: #000;
    text-align: center;
}

.author-box {
    display: block;
    margin: 20px auto 8px auto;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 8px;
    background-color: #e8ffec;
    width: 90%;
    max-width: 800px;
}

.author-info h3 {
    margin: 0 0 10px;
    color: rgb(var(--primary))
}

.author-info p {
    margin: 0;
    color: #000;
    line-height: 1.5
}