* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2d6a4f;
  color: white;
  padding: 15px 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 12px;
}

.hamburger {
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #40916c;
  color: white;
  padding-top: 60px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  margin: 20px 0;
  padding-left: 20px;
}

.side-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}

.side-menu ul li a:hover {
  color: lightblue;
}

.side-menu .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

main#content {
  padding: 20px;
}

h1 {
   font: Verdana, Arial, Helvetica, sans-serif;
   font-size: 20px;
   font-weight: bold;
   color: #000000;
}

h2 {
   font: Verdana, Arial, Helvetica, sans-serif;
   font-size: 16px;
   font-weight: bold;
   color: #000000;
}

h3 {
   font: Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-weight: bold;
   color: #000000;
}

p {
   -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto; 
   font-size: 10px;
   margin: 10px 0;
}

p.margin {
  margin-top: 1em;
  margin-botton: 1em;
}

p.bigindent {
  line-height: 1.8;
  text-indent: 50px;
}

td {
   padding: 0 8px;
}

.resizableImage {
  width: 100%;
  height: auto;
  min-width: 100px;
  min-height: 100px;
  box-shadow: 5px 5px 5px gray;
}

table {
  align: top;
  text-align: left
}

td {
  vertical-align: top;
}

.imageFloatingRightResizable {
  width: 100%;
  height: auto;
  min-width: 100px;
  min-height: 100px;
  box-shadow: 5px 5px 5px gray;
  width:170px;
  height:170px;
  margin-right:15px;
  float: left;  
}

embed {
  border: 0;
  padding: 0;
}