@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://2tata.neocities.org/wabbit.png');
                --main-bg-image: url('https://2tata.neocities.org/wabbit.png');
                --body-bg-image: url('https://2tata.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: 100px 100px;
                color: #fceaff;
                background-image: url('https://meinkunstspace.neocities.org/images/hintergrund.png');                   
                text-align: center;
                flex: 1;
                padding: 0px 0px;
                order: 2;
                width:100%;
                backdrop-filter: blur(1px);
            }

        bio2{
                display:inline-block;
                padding:0px;
                margin:0px;
                position: static;
        }

        a {          
          display: block;
          height: 107px;
        }

            /* 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: #ED64F5;
                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.gallery {
          margin: 5px;
          float: left;
          border: 5px groove black;
          max-width: 100%;
          max-height: 300px;
        }
        
        div.gallery:hover {
          border: 5px solid #111;
        }
        
        div.gallery img {
          width: 107px;
          height: 107px;
        }
        
        div.desc {
          padding: 5px;
          text-align: center;
          background-color: black;
          max-height: 20px;
        } 


    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: #ED64F5;
                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('https://meinkunstspace.neocities.org/images/hintergrund.png');
                background-size: 80px 35px;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #cd7446;
                /* 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;
            }

            /* navigation links*/
            #navbar li a {
                color: black;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

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

            #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('https://meinkunstspace.neocities.org/images/hintergrund.png');
                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: #cd7446;
                /* background color for footer */
                margin: 0px auto;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #ffffff;
                display:inline-block;
                padding:0px;
                margin:0px;
                background-color: black;
            }

            h1 {
                font-size: 30px;
            }

            strong {
                /* this styles bold text */
                color: #ffffff;
                background-color: black;
            }

            p {
               background-color: black;
              }

            /* CSS for extras */

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

                picture img {
                  display: block;
                  margin: 0px auto;
                  border: 10px groove black;
              }
              
              .column {
                  text-align: center;
                  
                  padding: 5px;
                }

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