.sidebar-iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.log {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #00ff22 2px solid;
}

.guestbook {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;;
}

.atabook {
  width: 180px;
  height: 500px;
  align-items: center;
  justify-content: center;
  border: 2px solid;
}

.visitorcount {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.counter {
  border: #00ff2263 2px solid;
}

:root {
  --header-image: url();
  --body-bg-image: url();

  --content: #f4ebff;
}

.geist-pixel {
  font-family: "Geist Pixel", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "ELSH" 0;
}

body {
  font-family: 'Geist Pixel', sans-serif;
  margin: 0;
  background-color: #000000;
  /* you can delete the line below if you'd prefer to not use an image */
  background-size: 65px;
  color: #00ff4c;
  background-image: var(--body-bg-image);
}

* {
  box-sizing: border-box;
}

/* 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 */
            
#container {
  max-width: 900px;
  /* 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 */
}

/* the area below is for all links on your page
EXCEPT for the navigation */

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

#header {
  width: 100%;
  background-color: #c7c2d4;
  /* header color here! */
  height: 150px;
  /* 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: var(--header-image);
  background-size: 100%;
}

/* navigation section!! */
#navbar {
height: 40px;
background-color: #13092d00;
/* 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: #00ff4c;
/* 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: #ffffff;
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: #00000000;
width: 200px;
padding: 20px;
font-size: smaller;
/* this makes the sidebar text slightly smaller */
justify-content: center;
border: #00ff22 solid 2px;
}

.image1 {
  width: 150px;
  height: fit-content;
}

.imgplaceholder {
  margin-top: 200px;
  border: #00ff22 2px solid;
  width: 150px;
  height: 150px;
  justify-content: center;
  overflow: hidden;
}

/* this is the color of the main content area,
between the sidebars! */

main {
background-color: #7ff5ba3b;
flex: 1;
padding: 20px;
order: 2;
border: #00ff22 dashed 2px;
}

#rightSidebar {
  order: 3;
  text-align: center;
  background-color: #7ff5ba3b;
}

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

h1,
h2,
h3 {
  color: 00ff4c;
}

/* this is just a cool box, it's the darker colored one */
div.box {
  margin-top: auto;
  display: grid;
  gap: 10px;
  margin-bottom: 0px ;
}

.scroll1 {
  background-color: #f3f3f300;
  border: 1px solid #00ff4c;
}

/* CSS for extras */

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


/* BELOW THIS POINT IS MEDIA QUERY */
/* so you wanna change the width of your page? 
by default, the container width is 900px.
in order to keep things responsive, take your new height,
and then subtrack it by 100. use this new number as the 
"max-width" value below
*/

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

aside {
width: 100%;
}

/* the order of the items is adjusted here for responsiveness!
since the sidebars would be too small on a mobile device.
feel free to play around with the order!
*/

main {
order: 1;
}

#leftSidebar {
order: 2;
}

#rightSidebar {
order: 3;
}

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