body *
{
  /* border: 1px solid red; */
  /* z-index: 1; */
}

body
{
  background-color: #ffffff;
  background: linear-gradient(135deg, #f4feff55 25%, transparent 25%) -34px 0/ 68px 68px, linear-gradient(225deg, #f4feff 25%, transparent 25%) -34px 0/ 68px 68px, linear-gradient(315deg, #f4feff55 25%, transparent 25%) 0px 0/ 68px 68px, linear-gradient(45deg, #f4feff 25%, #ffffff 25%) 0px 0/ 68px 68px;
  color: #535353;
  font-family: "Calibri", "Book Antigua", "Times New Roman", serif;
  font-size:16px;
  /* height: 100vh; */
}

#content {
  width: 100%;
  /* top: 50px; */
  /* left: 0px; */
  height: max-content;
  display: inline-block;
  min-height: 250px;
  /* position: relative; */
  margin-top: 50px;
}

@media only screen and (min-width: 900px)
{
  #content {
    width: 98%;
    margin-left: 10px;
  }
}

#footer {
  width: 100%;
  text-align: right;
  margin-top: 50px;
  margin-right: 50px;
  font-size: small;
}

.textSection {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 5px 20px 20px 20px;
  margin: 10px;
}

/* Navbar container */
#navbar {
  position: fixed;
  left: 0;
  top: 0;
  height: 45px;
  width: 100%;
  /* overflow: hidden; */
  background-color: #333;
  font-family: Arial;
  margin-bottom: 20px;
  z-index: 6500;
  display: grid;
  font-weight: bold;
  align-items: center;
}

#navbarToggle {
  display: block;
  color: white;
  text-align: center;
  padding: 12px;
}

#navbarPages[buttonshidden], #navbarLinks[buttonshidden] {
  display: none;
}

#navbarPages {
  display: grid;
  background-color: #333;
}

@media only screen and (min-width: 900px)
{
  #navbar {
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
  }

  #navbarToggle {
    display: none;
  }  

  /* Never hidden */
  #navbarPages, #navbarLinks, #navbarPages[buttonshidden], #navbarLinks[buttonshidden] {
    display: flex;
    align-content: center;
  }
}

/* Links inside the navbar */
#navbar .menuText {
  /* float: left; */
  display: inline-block;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  height: 20px;
  cursor: pointer;
}

/* Add a red background color to navbar links on hover */
#navbarPages .menuText:hover {
  background-color: rgb(0, 174, 255);
}

#navbarLinks {
  height: fit-content;
  display: inline-block;
  padding: 12px;
  background-color: #333;
  flex-wrap: wrap;
}

@media only screen and (min-width: 900px)
{
  #navbarLinks {
    height: 100%;
    padding: inherit;
  }
}

#navbarLinks img {
  height: 100%;
  width: 100%;
}

#navbarLinks a {
  display: inline-block;
  padding: 4px;
  height: 25px;
}

#navBarToggleButton {
  display: inline-block;
}

#navBarToggleButton::before {
  content: "☰";
}

#navbarLeft {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

#navbarLeft, #navbarLeft #navbarSpacer {
  flex-grow: 1;
}
