/* --- more??? scrollbar??? --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { 
    background: #89CFF0; 
    border: 1px solid #fff; 
    border-radius: 2px; 
}

body {
    background-color: #ffffff;
    background-image: url('https://file.garden/ZnNr0mYRNQ9BoevX/IMG_7494.jpeg');
    background-attachment: fixed;
    font-family: "DotGothic16", sans-serif;
    color: #555;
    margin: 0;
    padding: 60px 20px; 
    display: flex;
    justify-content: center;
}

/* --- lace stuff --- */
.lace {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: url('https://file.garden/ZnNr0mYRNQ9BoevX/IMG_2537.png') repeat-x;
    z-index: 1000; 
    pointer-events: none;
}

#corner-char {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    pointer-events: none; 
}

/* --- main --- */
#container {
    width: 100%;
    max-width: 750px;  
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid #4D83AD;
    border-radius: 4px; 
    border-top-left-radius: 67px; 
    padding: 15px;
    position: relative;
    box-shadow: 8px 8px 0px rgba(77, 131, 173, 0.1);
}

header {
    width: 100%;
    height: 250px;
    background: url('https://file.garden/ZnNr0mYRNQ9BoevX/IMG_7806.png') center/cover;
    border-radius: 2px;
    border-top-left-radius: 67px; 
    border: 1px solid #4D83AD;
    display: flex;
    align-items: flex-end; 
    justify-content: flex-start;
    margin-bottom: 15px;
}

header h1 {
    font-family: "Potta One", sans-serif;
    color: #fff;
    font-size: 28px;
    text-shadow: 2px 2px #4D83AD, -1px -1px 0 #4D83AD;
    padding: 10px 30px;
    margin: 0;
}

.main-wrapper {
    display: grid;
    grid-template-columns: 170px 1fr 170px;
    gap: 12px;
}

.column-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- ????? what do i even call this --- */
.column {
    background: #fff;
    border: 1px solid #89CFF0;
    border-radius: 4px;
    padding: 12px;
    box-shadow: inset 0 0 5px rgba(137, 207, 240, 0.1);
}

.box-title {
    background: linear-gradient(to bottom, #4D83AD 0%, #89CFF0 100%);
    border-bottom: 1px solid #4D83AD;
    margin: -12px -12px 12px -12px;
    padding: 5px;
    border-radius: 2px 2px 0 0;
    text-align: center;
    font-weight: bold;
    color: #fff; 
    font-size: 0.8em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- scroll stuff --- */
.scrolling-text {
    background: #fff;
    border: 1px double #4D83AD;
    padding: 3px;
    font-size: 0.85em;
    margin-bottom: 15px;
    color: #4D83AD;
}

nav ul { list-style: none; padding: 0; margin: 0; }
nav li { margin-bottom: 4px; }
nav a { 
    text-decoration: none; 
    color: #4D83AD; 
    font-size: 0.9em; 
    padding: 4px;
    display: block;
    border-left: 3px solid transparent;
    transition: 0.2s;
}
nav a:hover { 
    background: #f0faff; 
    border-left: 3px solid #89CFF0;
    padding-left: 8px;
}

/* --- scrollbox --- */
.scroll-area {
    height: 350px;
    overflow-y: auto;
    padding-right: 5px;
    font-size: 0.9em;
    line-height: 1.5;
}

footer {
    text-align: center;
    font-size: 0.7em;
    margin-top: 20px;
    color: #4D83AD;
    border-top: 1px dotted #4D83AD;
    padding-top: 10px;
}