:root {
    --header-image: url('/images/banner/thruEyes4.jpg');
    --body-bg-image: url('/images/bgimage.gif');

    --content: #43256E;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #08031A;
    background-size: 200px;
    color: #fceaff;
    background-image: var(--body-bg-image);
}


* {
    box-sizing: border-box;
}

a:hover {
    animation: pink-blue-pulse 2s infinite;
    text-decoration: underline;
}

@keyframes pink-blue-pulse {
    0%{color: #ED64F5;}
    50%{color: rgb(118, 255, 241);}
    100%{color: #ED64F5;}
}

#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: #ED64F5;
    font-weight: bold;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header {
    width: 100%;
    background-color: #5e4e8c;
    height: 150px;
    background-image: var(--header-image);
    background-size: 100%;
    height: 162px
}

/* navigation section!! */
#navbar {
    height: 40px;
    background-color: #13092D;
    /* navbar color */
    width: 100%;
    margin-bottom: 10px;
}

#intro {
    text-align: center
}

#intro h1 {
    margin-top: auto;
}

#funfacts {
    text-align: left;
}
#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #ED64F5;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    animation: rainbow 1s infinite;
    text-decoration: underline;
}

@keyframes rainbow {
    0%{color: rgba(255, 0, 247, 0.946);}
    20%{color: rgb(255, 89, 89);}
    40%{color: rgb(255, 207, 118);}
    60%{color: rgb(255, 255, 100);}
    80%{color: rgb(123, 255, 123);}
    100%{color: rgb(228, 109, 255);}
}

#flex {
    display: flex;
}


main {
    background-color: #43256E;
    flex: 1;
    padding: 20px;
    order: 2;
}

aside {
    background-color: #241445;
    width: 300px;
    padding: 20px;
    font-size: smaller; /* Slightly smaller text */
}

/* Left Sidebar */
#leftSidebar {
    order: 1;
    margin-right: 10px;
    text-align: center; /* Ensure text aligns to the center */
}

/* Right Sidebar */
#rightSidebar {
    order: 3;
    margin-left: 10px;
    text-align: center; /* Ensure text aligns to the center */
}
#leftSidebar p, #rightSidebar p {
margin-top: 0%;
text-align: center;


}
/* List Styling for Both Sidebars */
aside ul {
    list-style-position: inside; /* Keep bullet points aligned inside the box */
    padding-left: 0; /* Remove extra padding */
    margin: 0; /* Remove margin to keep lists aligned */
}


footer {
    background-color: #13092D;
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    margin-top: 10px
    /* this centers the footer text */
}


h2,
h3 {
    color: #ED64F5;
    text-align: center;
}

h1 {
    font-size: 25px;
    text-align: center;
    text-decoration: underline;
}
h3 {
    margin: 0%;
}
img {
    align-items:  center;
    justify-content: center;

}
strong {
    /* this styles bold text */
    color: #ED64F5;
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #13092D;
    border: 1px solid #ED64F5;
    padding: 10px;
    margin: 0 05px;
    height: 150px;
    max-width: 200px;
}

.box1 {
    background-color: #2b265b;
    border: 1px solid #ED64F5;
    padding: 10px;
    margin: 10px 05px;
    text-align: center;
    width: 200px; 
    height: 350px;
    order: 1;
}

.sidebar-box {
    background-color: #13092D;
    border: 1px solid #ED64F5;
    padding: 10px;
    width: 100%; /* Takes up the full width of the sidebar */
    box-sizing: border-box; /* Ensures padding doesn’t affect width */
    height: auto; /* Height adjusts based on content */
    margin-bottom: 15px; /* Space between boxes */
}


.box1 img {
    width: 70px;
}
.box2 {
    background-color: #2b265b;
    border: 1px solid #ED64F5;
    padding: 10px;
    margin: 10px 05px;
    text-align: center;
    width: 200px; 
    height: 350px;
    order: 2;
}

.box2 img {
    width: 60px;
}

#sidebar li {
    text-align: center; /* Keep text aligned left inside list items */
}

/* CSS for extras */
#bloglinks {
    color: #ee80e8e1; 
    margin-top: 0;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically if needed */
    flex-direction: column; /* Stack elements vertically */
}

/* Style for list items inside #bloglinks */
#bloglinks ul {
    list-style-position: inside; /* Bullets appear inside the box */
    padding-left: 0; /* Remove left padding */
    margin: 0; /* Remove default margin */
}

#bloglinks li {
    text-align: left; /* Keep text aligned left inside list items */
}

#bloglinks li a:hover {
    color: #71aaff;
    text-decoration: underline;
}
#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}


@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
        margin-left: 10px;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
    aside {
        width: 100%; /* Sidebars take full width on smaller screens */
    }
    .sidebar-box {
        width: 100%; /* Box width adapts to sidebar width */
    }
}
