/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("/designassets/clovermemo.png");
    background-size: auto 100%;
    background-position: center;
    z-index: -1;
  }

  body {
    width: 1px;
    min-width: 100%;
    *width: 100%;
    height: 100%;
    overflow: auto;
    padding: clamp(10px, 6%, 15px);
    margin: auto;
    overflow-wrap: break-word;
    overflow-y: none;
  }


img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h1{
  text-align: left;
  margin-bottom: 0.5rem;
  color: var(--sdgreen);
}

h2{
text-align: left;
margin-top: 0;
margin-bottom: 0.5rem;
font-style: italic;
font-size: 1.4rem; 
line-height: 1.5rem;
color: var(--dpink);
}

h3{
font-style: italic;
font-size: 1.25rem; 
line-height: 1.5rem;
color: var(--dblue);
}

p{
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a {
  color: var(--sdblue);
  font-size: 1.25rem;
  line-height: 1.5rem;
  
}
a:hover { 
  color: var(--dblue);
}

@media only screen and (min-width: 500px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 1rem auto;
  width: 90%;
  background: white;
  border-radius: 2vmin;
  box-shadow: 0 0 80px 20px white;
}

#content {
  padding: clamp(10px, 6%, 26px);
}


/*HEADER STYLE*/
#header {
  padding: 0 5%;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 3rem;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0em;
  margin-top: 0.1em;
}
#header li a {
  color: var(--sdgreen);
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  color: var(--sdblue);
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  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% 2rem 5%;
}