body {
  font-family: "Geneva CE", "Arial CE", sans-serif;
  padding: 0;
  margin: 0;
}

a {   
   text-decoration: none;
   color: #232323;
}

ul {
  list-style-type: none;
}

.menu-container {
  position: absolute; 
  top: 198px; 
  left: 30px;
}

.menu-container ul li {
   margin: 10px;
   text-transform: lowercase;
   font-weight: 900;
}
.content {
  position: absolute;
  top: 218px;
  left: 430px;
  font-size: 90%;
  width: 390px;
  height: 210px;
  color: #FFF9C3;
  line-height: 1.3;
  overflow: auto;
}

.content-gallery {
  position: absolute;
  top: 218px;
  left: 230px;
  font-size: 90%;
  width: 590px;
  height: 210px;
  color: #FFF9C3;
  line-height: 1.3;
  overflow: auto;
}

.content p {
  margin: 2px;
}

.fb {
  position: absolute;
  top: 518px;
  left: 795px;
}

::-webkit-scrollbar {
      width: 10px;
} /* this targets the default scrollbar (compulsory) */
::-webkit-scrollbar-track {
      background-color: #099E44;
} /* the new scrollbar will have a flat appearance with the set background color */
 
::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2); 
} /* this will style the thumb, ignoring the track */
 
::-webkit-scrollbar-button {
      background-color: #099E44;
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
 
::-webkit-scrollbar-corner {
      background-color: black;
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */