/* bruh ugly ihate this stupid backgorund */
body {
    background-image: url("backgroundally.png");
    background-blend-mode: screen;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    color: #266096;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* fonts */
@font-face {
    font-family: 'Synkopy';
    src: url('Synkopy-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Kilo';
    src: url('Kilo.otf') format('opentype');
}

@font-face {
    font-family: 'Planet Kosmos';
    src: url('PLANK___.TTF') format('truetype');
}

/* container */

.site-frame {
    background-color: #ffffff;
    padding: 10px;
    box-shadow:
        0 0 0 5px #b4ddf4,
        0 0 50px 10px #ebf6ff;
            box-shadow: 0 0 50px 10px rgba(255, 255, 255, 0.848);
}

.site-container {
    width: 905px;
    background-image: url("polkadot.jpg");
    background-size: 100px 100px;
    padding: 15px;
    border: 5px solid #cfe4ff;
}


.footer {
    text-align: center;

    padding: 15px;
    margin-top: -10px;
    background-color: #fff;
    font-family: 'Times New Roman', serif;
    color: #266096;
    font-size: 14px;
    width: 872px;
}

/* header */
.header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.header-banner {
    width: 890px;
    height: 500px;
    display: block;
}

/* main */
.main-content {
    display: flex;
    gap: 15px;
}

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

.left-column {
    flex: 0 0 25%;
}

.center-column {
    flex: 1;
}

.right-column {
    flex: 0 0 20%;
}

/* content boxes */
.content-box {
    background-color: #fff;
    border: 3px solid #cce6ff;
    box-shadow: 2px 2px 0 0 #a9cff2;
    padding: 5px;
    position: relative;
}

.box-title {
    font-family: 'Synkopy', sans-serif;
    background-color: rgba(217, 238, 255, 0.673);
    background-image: url("bluedots.png");
    background-blend-mode: overlay;
    background-size: cover;
    padding: 5px;
    text-align: center;
    font-size: 19px;
    color: #0f4e8d;
    text-transform: uppercase;
}

.box-title-header {
    font-family: 'Synkopy', sans-serif;
    background-image: linear-gradient(#c7efff, #ffffff);
    padding: 5px;
    text-align: center;
    font-size: 19px;
    color: #0f4e8d;
    text-transform: uppercase;
}

.box-title-spotlight {
    font-family: 'Synkopy', sans-serif;
    background-image: linear-gradient(#ffe3f3, #ffffff);
    padding: 5px;
    text-align: center;
    font-size: 19px;
    color: #0f4e8d;
    text-transform: uppercase;
}

.box-content {
    padding: 10px;
    font-size: 15px;
}

/* Specific Content Box Styles */
.image-box img {
    width: 100%;
    display: block;
}

.full-width-image {
    width: 100%;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    display: block;
    background-image: linear-gradient(#e3eeff, #ffffff);
    border: 2px solid #91c6ff;
    border-style: dashed;
    padding: 5px 10px;
    margin: 5px 0;
    text-decoration: none;
    color: #4b4b4b;
    text-align: center;
    transition: background-color 0.2s;
}

.nav-links li a:hover {
    box-shadow: 0 0 15px 10px rgba(255, 227, 240, 0.848);
}

.scrollable-content {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 5px;
}

.scrollable-content-update {
    max-height: 50px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 5px;
}

.scrollable-content-shrine {
    max-height: 285px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 5px;
}

.scrollable-content-shrinez {
    max-height: 193px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 5px;
}

.scrollable-content-current {
    max-height: 100px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 5px;
}

.scrollable-content::-webkit-scrollbar {
    width: 10px;
}

.scrollable-content::-webkit-scrollbar-track {
    background-image: linear-gradient(#c5e8ff, #f8f8f8);
    border-radius: 5px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-image: url("halftone.jpg");
    background-size: contain;
    border-radius: 5px;
    border: 2px solid #89b9ee;
}

.scrollable-content-update::-webkit-scrollbar {
    width: 10px;
}

.scrollable-content-update::-webkit-scrollbar-track {
    background-image: linear-gradient(#c5e8ff, #f8f8f8);
    border-radius: 5px;
}

.scrollable-content-update::-webkit-scrollbar-thumb {
    background-color: white;
    background-size: contain;
    border-radius: 5px;
    border: 1px solid #c8e3ff;
}

.scrollable-content-current::-webkit-scrollbar {
    width: 10px;
}

.scrollable-content-current::-webkit-scrollbar-track {
    background-image: linear-gradient(#c5e8ff, #f8f8f8);
    border-radius: 5px;
}

.scrollable-content-current::-webkit-scrollbar-thumb {
    background-color: white;
    background-size: contain;
    border-radius: 5px;
    border: 1px solid #c8e3ff;
}

.scrollable-content-shrine::-webkit-scrollbar {
    width: 10px;
}

.scrollable-content-shrinez::-webkit-scrollbar {
    width: 10px;
}

.scrollable-content-shrine::-webkit-scrollbar-track {
    background-image: linear-gradient(#ffd6f0, #f8f8f8);
    border-radius: 5px;
}

.scrollable-content-shrinez::-webkit-scrollbar-track {
    background-image: linear-gradient(#ffd6f0, #f8f8f8);
    border-radius: 5px;
}

.scrollable-content-shrine::-webkit-scrollbar-thumb {
    background-image: url("lightpinkdots.jpg");
    background-size: contain;
    background-color: rgba(255, 132, 169, 0.783);
    background-blend-mode: overlay;
    border-radius: 5px;
    border: 2px solid #f8b3e6;
}

.scrollable-content-shrinez::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #c8e3ff;
}

.box-title, h1 {
    font-family: 'Synkopy', sans-serif;
    color: #67b0ff;
}

h2 {
    font-family: 'Planet Kosmos';
    background: -webkit-linear-gradient(#b9e3f8, #83bbf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p, ul, a, li {
    font-family: 'Times New Roman', serif;
}



.miniblog-widgets-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    padding: 5px;
}

.miniblog-widget {
    background-color: rgba(255, 255, 255, 0.523);
    background-image: url("bluedots.png");
    background-blend-mode: overlay;
    background-size: contain;
    border: 1px solid #d0e7f0;
    border-radius: 3px;
    padding: 12px 12px;
    flex: 1 1 calc(100% - 10px);
    max-width: calc(100% - 10px);
    min-width: 150px;
    box-sizing: border-box;
}

.miniblog-widget p {
    margin: 0;
    font-family: 'Times New Roman', serif;
    color: #266096;
    font-size: 0.93em;
}

.miniblog-widget .widget-label {
    font-weight: bold;
    color: #0f4e8d;
    margin-right: 5px;
}

.text-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
    justify-content: center;
    padding: 5px;
}

.text-box {
    background-color: rgba(255, 255, 255, 0.783);
    background-image: url("polkadot.jpg");
    background-blend-mode: overlay;
    background-size: cover;
    border: 1px solid #d0e7f0;
    border-radius: 3px;
    padding: 12px 12px;
    flex: 1 1 calc(100% - 10px);
    max-width: calc(100% - 10px);
    min-width: 150px;
    box-sizing: border-box;
}

.text-box p {
    margin: 0;
    font-family: 'Times New Roman', serif;
    color: #266096;
    font-size: 0.93em;
}

.text-box .textbox-label {
    font-weight: bolder;
    color: #0f4e8d;
    margin-right: 5px;
    margin-bottom: 10px;
}

.text-box-container {
    display: flex; /* Make it a flex container */
    gap: 5px; /* Space between the text box and interaction options */
    margin-bottom: 5px;
    justify-content: center;
    padding: 5px;
    /* Remove flex-wrap, max-width, min-width from here if you want side-by-side layout for text-box and interaction-options */
    flex: 1; /* Allow it to take available space */
}

/* If you want the text box and interaction options to be side-by-side: */
.content-box.image-box {
    display: flex; /* Make content-box a flex container */
    align-items: flex-start; /* Align items to the top */
    gap: 0px; /* Space between the girl image and the text-box-container */
}


.text-box {
    /* ... existing text-box styles ... */
    flex: 1; /* Allow text-box to take available space */
    max-width: none; /* Remove max-width if it's constraining the layout unnecessarily */
    min-width: unset; /* Remove min-width if it's constraining the layout unnecessarily */
}

.question-options li {
    /* Styles for the container of questions */
    font-size: 0.3cm;
}

.question-options ul {
    list-style:circle;
    padding: 0;
    margin: 13px;

}

.question-options li {
    margin-bottom: 5px;
    
}

.question-link {
    display:table-row;
    background-color: #e3f3ff;
    color: #266096;
    text-decoration: none;
    padding: 3px 10px;
    border: 1px solid #b4ddf4;
    font-family: 'Times New Roman', serif;
    font-size: 0.9em;
    transition: background-color 0.2s, border-color 0.2s;
}

.question-link:hover {
    background-color: #cce6ff;
    border-color: #91c6ff;
}

.lower-right-image {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: 187px;
    z-index: 1000;
    vertical-align: middle;
    position: relative;
    top: -30px;
}