@font-face {
    font-family: 'MPF';
    src: url(fonts/MPF\ DOTIMPACT.ttf);
}

@font-face {
    font-family: 'White Storm';
    src: url(fonts/White\ Storm.otf);
}

@font-face {
    font-family: 'Shine';
    src: url(fonts/ShineTypewriter.ttf);
}

@font-face {
    font-family: 'Cardinal';
    src: url(fonts/Cardinal.ttf);
}

html {
  scroll-behavior: smooth;
}


:root {
  --bow: #7E2625;
  --warmwood: #3C1B0F;
  --candle: #F1ECDB;
  --leaf: #868659;
  --juniper: #292F17;
}


body {
    background-image: url(images/download\ \(18\).jpg);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: blur(10px);
    transition: filter 1.5s ease;
    height: 100%;
    cursor: none;
    overflow: auto;
}

body::-webkit-scrollbar {
  display: none; /* chrome, safari, edge */
}

body.loaded {
    filter: blur(0);
}

html, body {
    margin: 0;
}


p, li {
    font-family: 'Shine';
    list-style: none;
    padding: 0;
}

.update__bar h1 {
    font-family: 'Shine';
}

.parent {
    display: column;
    justify-content: center;
    align-items: stretch;
    padding-top: 90px;
    margin: 9px 0;
}

.header {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
}

.banner {
    background-image: url(images/brown\ seamless.png);
    padding: 30px;
    border: 3px solid var(--bow);
}

.banner h1 {
    width: 600px;
    font-family: 'Cardinal';
    border: 3px solid var(--warmwood);
    color: var(--juniper);
    background-color: rgba(255, 255, 255, 0.2); /* white with 20% opacity */
    padding: 5px;
    text-align: center;
}

.banner p {
    width: 600px;
    font-family: 'Shine';
    color: var(--candle);
    text-align: justify;
}

.author {
    background-color: rgb(254, 254, 254, 0.3);
    border: 3px solid white;
    padding: 20px;
    width:130px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 20px 0 0 0;
    text-align: center;
    color: white;
}

.author p {
    font-size: 20px;
}

.author img {
    display: block;
    margin: 0 auto;
}


.update__bar {
    background-color: rgba(29, 114, 28, 0.2);
    border: 3px solid var(--juniper);
    border-radius: 0 20px 0 0;
    color: var(--candle);
    padding: 30px;
    height: 270px;        /* set a fixed height */
    overflow-y: auto;      /* vertical scroll if content is too tall */
}

.update__bar h1 {
    font-size: 21px;
    padding: 10px;
    text-decoration: underline;
    text-align: left;
}

.update__bar p {
    font-size: 15px;
    border: 1px solid white;
    border-radius: 5px 5px 0 0;
}

.update__bar::-webkit-scrollbar {
    display: none; /* chrome, safari, edge */
}

.author hr {
    border: none;          /* remove default border */
    height: 3px;           /* thickness */
    background-color: white; /* line color */
    margin: 20px 0;        /* spacing above/below */
}

.update__bar hr {
    border: none;          /* remove default border */
    height: 3px;           /* thickness */
    background-color: var(--warmwood); /* line color */
    margin: 20px 0;        /* spacing above/below */
}


.navigation a {
    text-decoration: none;
    color: var(--warmwood);
    text-align: center;
    user-select: none;
}

.navigation li {
    background-color: var(--candle);
    padding: 10px;
    width: 90px;
    text-align: center;
    border-radius: 0 6px 0 6px;
    border: 2px solid var(--leaf);
    transition: all 0.3s ease;
}

.navigation li:hover{
    transform: scale(1.1);
    background-color: var(--leaf);
    border: 2px solid var(--warmwood);
    color: white;
    border-radius: 20px;
}

.navigation {
    display: flex;
    justify-content:space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
    padding: 20px;
    background-color: var(--bow);
    border: 3px solid var(--warmwood);
    border-radius: 20px;
}

.navigation li {
    margin: 0px;
}

/* Button styling */
.top-left-btn {
  position: fixed;       /* stays in place when scrolling */
  top: 20px;             /* distance from top */
  left: 20px;            /* distance from left */
  padding:9px;
  background-color: rgba(144, 30, 30, 0.3); /* button color */
  color: white;            /* text color */
  border: 2px solid white; /* dark brown border */
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;           /* stays above other content */
  font-size: 16px;
  transition: background 0.3s ease;
  font-family: 'Shine';
}

.top-left-btn a {
    text-decoration: none;
    color: white;
}

/* Hover effect */
.top-left-btn:hover {
  background-color: rgb(82, 14, 14, 0.6);
}

.footer {
    background-color: gray;
    border-radius: 0 0 20px 20px;
    margin-top: 10px;
    padding: 10px;
    background-image: url(images/Gothic\ ornament\ pattern\ seamless\ vector\ 03\ free\ download.jpg);
    border: 3px solid white;
}

.footer h1 {
    text-align: center;
    color: white;
    font-family: 'Shine';
}

.footer p {
    text-align: center;
    color: white;
    font-family: 'Shine';
}

.custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 40px;         /* adjust for your gif */
    height: 40px;
    pointer-events: none; /* don't block clicks */
    transform: translate(-50%, -50%);
    z-index: 9999;
}

a, a:hover,
button, button:hover {
    cursor: none !important;
}

.the__shift {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
}

.from__neisi {
    background-image: url(images/Royal\ Victorian\ Damask\ Wallpaper\,\ Seamless\ Pattern….jpg);
    margin-top: 10px;
    padding: 20px;
    width: 180px;
    border: 3px solid var(--bow);
}

.from__neisi h1 {
    border: 3px solid white;
    background-color: var(--bow);
    color: white;
    font-family: 'Cardinal';
    text-align: center;
}

.from__neisi hr {
    border: none;
    border-radius: 5px;          /* remove default border */
    height: 3px;           /* thickness */
    background-color: white; /* line color */
    margin: 5px 0;        /* spacing above/below */
}

.from__neisi p {
    color: var(--bow);
    padding: 10px;
    background-color: var(--candle);
    border-radius: 15px;
    text-align: justify;
}

.__shift {
    width: 880px;
    margin-top: 10px;
    padding: 20px;
    background-color: var(--juniper);
    border: 3px solid var(--warmwood);
}

.__shift h1 {
    color: white;
    font-family: 'Cardinal';
    text-align: center;
    border: 3px solid white;
    border-radius: 20px;
    background-color: var(--leaf);
}

.__shift p {
    color: white;
    text-align: justify;
}