
@font-face {
    font-family: 'Averia Libre';
    src: url("/fonts/AveriaLibre-Regular.woff");
    }
    
    @font-face {font-family:'Selvia Genatu';
    src: url("/fonts/SelviaGenatu-Medium.woff");
      
      }

body {
  height:100%;
  margin:0;
        background-image:url(/images/borders/leafs.png);
  background-color:#6D8D76;
  background-size: auto 100px;
background-position-y: bottom;
background-repeat:repeat-x;
background-attachment:fixed;
  font-size: 16px;
  font-family: 'Averia Libre', serif;
}

* {scrollbar-width:thin;
scrollbar-color: #222E2A #6D8D76 ;
box-sizing:border-box;}

p {
  line-height: 1.1;
}

.iframeholder {  width: 300px;
  height: 300px;  overflow: hidden;}

iframe {
transform: scale(0.5);
  transform-origin: 0 0;
width:200%;
height:200%;
}


.iframeholder {  width: 300px;
  height: 300px;  overflow: hidden;}

iframe {
transform: scale(0.5);
  transform-origin: 0 0;
width:200%;
height:200%;
}

.tooltip {
  position: relative;
  display: inline;
  border-bottom: 1px dotted;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
font-size: 8pt;
font-family:Verdana;
  background-color: #222e2a;
  color: #fff6e6;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.flexxx {display:flex;
flex-wrap: wrap;
width:100%;
margin:auto;
justify-content: center; align-items: center;
gap:0;}

.bgs img {width:110px;
height:110px;
object-fit: cover;}

hr {
  border: solid #E2E0DC;
  border-width: 1px 0 0 0;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.littlenav {position:relative;
height:20px;
width:80%;
bottom:100px;
right:6%;}


.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a {color:#625839;
}

a:hover { 
  color: #fff6e6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Selvia Genatu', Geneva, sans-serif;
  color: #222E2A;
  margin:0px;
}

h1 {font-size:32pt;
  }
  
  h2 {font-size:28pt;}
  h4 {font-size:19pt;}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	background-color: #E2E0DC;
  color: #222E2A; 
  outline-color: #222E2A;
  outline-style: ridge;
  outline-width: 2px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}


/*HEADER STYLE*/
#header {
  background-color: #ACCB80;
  padding: 0 5%;
  border-color: #222E2A;
  border-style: ridge;
  border-width: 0 0 2px 0;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: #222E2A;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  color:#625839;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  color:#625839;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}

      .pictureflex {display:flex;
max-width:100%;
flex-wrap:wrap;
gap:10px;
justify-content:center;
max-height:800px;
overflow:auto;
}

.pictureflex img {max-width:45%;}



.cube-container {
  perspective: 1000px;

}
.cube {

  position: relative;
margin:auto;
margin-top:100px;
margin-bottom:100px;
  height: 200px;
  width: 200px;
  transform-style: preserve-3d;
  animation: rotateCube 5s infinite linear;
}

.cube:hover {animation-play-state: paused;}

.face {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: transparent;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
overflow:auto;
padding:20px;
}
.front {
  transform: translateZ(100px);
}
.back {
  transform: rotateY(180deg) translateZ(100px);
}
.cubeleft {
  transform: rotateY(-90deg) translateZ(100px);
}
.cuberight {
  transform: rotateY(90deg) translateZ(100px);
}
.top {
  transform: rotateX(90deg) translateZ(100px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}
@keyframes rotateCube {
from { transform: rotate3d(1, 1, 0, 0deg); }
  to { transform: rotate3d(1, 1, 0, 360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .cube {
    animation: none;
    transform: rotate3d(1, 1, 0, 45deg);
  }
}
.quote, blockquote {font-style:italic;
border-left: solid black 1px;
font-size:11pt;
padding-left:20px;}

.flex {display:flex;
justify-content:center;
gap:50px;}

