: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;
  }

@font-face {
    font-family: 'Cattie';
    src: url('/css/fonts/Cattie-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

@font-face {
    font-family: 'Gaegu';
    src: url('/css/fonts/Gaegu-Regular.woff2') format('woff2');
  }
  
  @font-face {
    font-family: 'Gaegu';
    src: url('/css/fonts/Gaegu-Bold.woff2') format('woff2');
    font-weight: bold;
  }
  
  @font-face {
    font-family: 'Gaegu';
    src: url('/fonts/Gaegu-Light.woff2') format('woff2');
    font-weight: 300;
  }

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

* {
    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;
}

#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;
    font-family: 'Nunito', sans-serif;
}

#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 {
    flex: 1;
    padding: 20px;
    order: 2;
}

footer {
    background-color: #13092D;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    font-family: 'Nunito', sans-serif;
}


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

h1 {
    font-size: 50px;
    text-align: center;
    margin-top: 0%;
    font-weight: 100;
}

h3 {
    margin: 0%;
}
img {
    align-items:  center;
    justify-content: center;

}
strong {
    color: #ED64F5;
}

ul {
  list-style-position: inside;
  padding-left: 0%;
  justify-items: left;
}

.container {
    display: flex;
    justify-content: center; 
    padding: 20px;
}

.blogbox {
    background-color: rgba(253, 255, 250, 0.92); /* Semi-transparent background */
    padding: 20px; /* Padding inside the box */
    width: 90%; /* Use a percentage width for responsiveness */
    max-width: 700px; /* Limit max width */
    height: auto; /* Height adjusts based on content */
    text-align: left; /* Align text to the left */
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically within .blogbox */
    align-items: flex-start; /* Align items to the start (left) */
    margin: 10px auto; /* Center the .blogbox */
    font-family: "Gaegu", sans-serif; /* Custom font with fallback */
    color: rgb(0, 0, 0); /* Text color */
    font-size: larger; /* Larger text size */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.gallerybox {
    background-color: rgba(253, 255, 250, 0.92); /* Semi-transparent background */
    padding: 20px; /* Padding inside the box */
    width: 90%; /* Use a percentage width for responsiveness */
    max-width: 700px; /* Limit max width */
    height: auto; /* Height adjusts based on content */
    text-align: center;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically within .blogbox */
    align-items: flex-start; /* Align items to the start (left) */
    margin: 10px auto; /* Center the .blogbox */
    font-family: "Gaegu", sans-serif; /* Custom font with fallback */
    color: rgb(0, 0, 0); /* Text color */
    font-size: larger; /* Larger text size */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.image-container {
    display: flex;
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
    flex-wrap: wrap; /* Allows images to wrap to the next line on small screens */
  }
  
  .image-container img {
    max-width: 50%; /* Ensures images scale down to fit the container */
    height: auto; /* Maintains the aspect ratio */
    flex: 1 1 300px; /* Allows images to grow and shrink, with a base width of 300px */
    object-fit: cover; /* Ensures the image covers its container while maintaining aspect ratio */
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  #image-container2 img {
    display: flex;
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
    flex-wrap: wrap; /* Allows images to wrap to the next line on small screens */
    max-width: 100%;
  } 

  
.blogbox h1 {
    font-family: 'Cattie', sans-serif;

}

/* CSS for extras */
#bloglinks {
color: #ee80e8e1; 
text-align: left;
margin-top: 0%;
}

#bloglinks a {
color:#e774e2e1;

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

 /* The grid: Four equal columns that floats next to each other */
 .column {
    float: left;
    width: 25%;
    padding: 10px;
  }
  
  /* Style the images inside the grid */
  .column img {
    opacity: 0.8;
    cursor: pointer;
  }
  
  .column img:hover {
    opacity: 1;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* The expanding image container (positioning is needed to position the close button and the text) */
  .container {
    position: relative;
    display: none;
  }
  
  /* Expanding image text */
  #imgtext {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
  }
  
  /* Closable button inside the image */
  .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
  } 


@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;
    }
}

/* Media Query for tablet and smaller devices */
@media (max-width: 768px) {
    .blogbox {
        width: 95%; /* Increase width to fit smaller screens */
        padding: 15px; /* Reduce padding for smaller screens */
        font-size: medium; /* Adjust font size */
    }
}

/* Media Query for mobile devices */
@media (max-width: 480px) {
    .blogbox {
        width: 100%; /* Full width on very small devices */
        padding: 10px; /* Further reduce padding */
        font-size: small; /* Smaller text for readability */
    }
}  
