@import url('https://fonts.googleapis.com/css?family=Paytone+One');
            /* user styles */
            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

           /* :root {
                --header-image: url('https://taakie.neocities.org/wabbit.png');
                --main-bg-image: url('https://taakie.neocities.org/wabbit.png');
                --body-bg-image: url('https://taakie.neocities.org/tumblr_a39693396530498befdde306f4a5aa05_6431ca46_540.jpg'); 

              
                --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;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 50px;
                color: #fceaff;
                background-image: url('../silly_pics/tumblr_a39693396530498befdde306f4a5aa05_6431ca46_540.jpg');
            }

           

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container2 {
                max-width: 800px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            #container2 a {
                color: #72e13e;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

/*photo gallery*/

    div.gallery2 {
      margin: 5px;
      float: left;
      border: 5px groove gold;
      max-width: 200px;
      max-height: 250px; 
    }

    div.gallery2:hover {
      border: 5px solid #111;
    }

    div.gallery2 img {
      max-width: 200px;
      max-height: 200px
    }

            #container3 {
                max-width: 1100px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
                  and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            #container3 a {
                color: #72e13e;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

           #pics {
                padding: 50px 110px;
                text-align: center;
            }
/*end photo gallery*/

            #header {
                width: 100%;
                background-color: #221500;
                /* header color here! */
                height: 100px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: url('../silly_pics/wabbit.png');
                background-size: 89px 50px;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #935f45;
                /* navbar color */
                width: 100%;
            }

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

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

            /*preview pics*/
            a {
                color: #72e13e;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #navbar .link {
                color: #72e13e;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
                cursor: pointer; /* make the cursor change to pointer on hover */
                padding: 5px; /* adjust padding as needed */
            }
            
            #navbar .link:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #navbar li c {
                color: #72e13e;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            #navbar li c:hover {

                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
            if you want to style them separately,
            create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #241445;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
                between the sidebars! */
            main {
                flex: 1;
                padding: 20px 0px;
                order: 2;
                text-align: center;
                width:100%;
                background-image: url('../silly_pics/55249891-old-black-brick-wall-seamless-pattern-for-continuous-replicate.jpg');
                background-size: 100%;
              }

            /* what's this "order" stuff about??
              allow me to explain!
              if you're using both sidebars, the "order" value
              tells the CSS the order in which to display them.
              left sidebar is 1, content is 2, and right sidebar is 3! */

             #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #935f45;
                /* background color for footer */
                margin: 0px auto;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #72e13e;
                display:inline-block;
                padding:0px;
                margin:0px;                
            }

            h1 {
                font-size: 25px;
            }

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


            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

       /*        picture img {
                  display: block;
                  margin: 0px auto;
                  box-shadow: rgb(85, 91, 255) 0px 0px 0px 3px, rgb(31, 193, 27) 0px 0px 0px 6px, rgb(255, 217, 19) 0px 0px 0px 9px, rgb(255, 156, 85) 0px 0px 0px 12px, rgb(255, 85, 85) 0px 0px 0px 15px;
              } */


picture img {
  display: block;
  margin: 0px auto;

  box-shadow: 
    0 0 0 3px rgb(0, 56, 168), /*blue*/
    0 0 0 6px rgb(0, 56, 168), /*blue*/
    0 0 0 9px rgb(155, 79, 150), /*purple*/
    0 0 0 12px rgb(214, 2, 112), /*pink*/
    0 0 0 15px rgb(214, 2, 112); /*pink*/

   /* Animation */ 
  animation: colorAnimation 1s infinite step-start;
}

@keyframes colorAnimation {
  0% {
    box-shadow: 
      0 0 0 3px rgb(0, 56, 168),
      0 0 0 6px rgb(0, 56, 168),
      0 0 0 9px rgb(155, 79, 150),
      0 0 0 12px rgb(214, 2, 112),
      0 0 0 15px rgb(214, 2, 112);
  }

  16.67% {
    box-shadow: 
      0 0 0 3px rgb(214, 2, 112),
      0 0 0 6px rgb(0, 56, 168),
      0 0 0 9px rgb(0, 56, 168),
      0 0 0 12px rgb(155, 79, 150),
      0 0 0 15px rgb(214, 2, 112);
  }

  33.34% {
    box-shadow: rgb(214, 2, 112) 0px 0px 0px 3px,
                rgb(214, 2, 112) 0px 0px 0px 6px, 
                rgb(0, 56, 168) 0px 0px 0px 9px,
                rgb(0, 56, 168) 0px 0px 0px 12px,
                rgb(155, 79, 150) 0px 0px 0px 15px;
  }
  50% {
    box-shadow: rgb(155, 79, 150) 0px 0px 0px 3px,
                rgb(214, 2, 112) 0px 0px 0px 6px, 
                rgb(214, 2, 112) 0px 0px 0px 9px,
                rgb(0, 56, 168) 0px 0px 0px 12px,
                rgb(0, 56, 168) 0px 0px 0px 15px;
  }
  75% {
    box-shadow: rgb(0, 56, 168) 0px 0px 0px 3px,
                rgb(155, 79, 150) 0px 0px 0px 6px,
                rgb(214, 2, 112) 0px 0px 0px 9px,
                rgb(214, 2, 112) 0px 0px 0px 12px,
                rgb(0, 56, 168) 0px 0px 0px 15px;
  }
  100% {
    box-shadow: rgb(0, 56, 168) 0px 0px 0px 3px,
                rgb(0, 56, 168) 0px 0px 0px 6px,
                rgb(155, 79, 150) 0px 0px 0px 9px,
                rgb(214, 2, 112) 0px 0px 0px 12px,
                rgb(214, 2, 112) 0px 0px 0px 15px;
  }
}

                #buttons {
                  justify-content: center;
                  align-items: center;
                  gap: 10px; /* Adjust the gap between buttons as needed */
                }


              .column {
                  text-align: center;
                  
                  padding: 5px;
                }

          /* Clear floats after image containers 
              .row::after {
                content: "";
                clear: both;
                display: table;
              } */
            
              bottomtext {
               margin: 0px auto;
              }
              
              bio {
                display:inline-block;
                padding:0px;
                margin:0px;
              }