:root {
    --leafcolor: #bffaad;
    --boxbgcolor: #f4ffdc;
    --bordercolor: #133e20;
    --textcolor: #133e20;
    --linkcolor: #feeeae;
    --contrastcolor: #ffeb9c;
}

/* and here are the two fonts used, so you can change them up here if you want. */

header, footer {
 margin: auto;
 margin-bottom: 10px;
    background-color: var(--leafcolor);
    max-width: 700px;
    height: max-content;
    position: relative;
    text-align: center;
    color: var(--textcolor);
    border: 1px solid var(--bordercolor);
    border-radius: 10px;
}

li {
text-align: left;  
}

nav li{
margin: 10px;
text-decoration: none;
text-align: left;
list-style-type: none;
}


nav ul {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  font-size: small;
   display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li {
  float: left;
  margin: 1px;
  list-style-type: none;
}

nav ul li a{
  display: block;
  color: var(--textcolor);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  list-style-type: none;
  background-color: var(--contrastcolor);
  border-radius: 10px;
  border: 1px solid var(--bordercolor);
}

nav ul li a:hover {
  color: var(--textcolor);
  background-color: var(--linkcolor);
  border-radius: 10px;
}

body {
    font-family: 'Montserrat', 'verdana', sans-serif;
    font-size: 10pt;
}

header h1 {
    font-family: 'Coiny', 'Arial Black', sans-serif;
    font-size: 30pt;
    margin: 10px;
}

.container p {
    font-family: 'Montserrat', 'verdana', sans-serif;
    font-size: 12pt;
    margin: 10px;
}




/* you can change the bullet point for lists with this. just delete it if you want normal bullet points! */

li {
        display: list-item;			
		}

ul li {
    list-style-type: "✿";
    display: list-item;
    padding: 0;
}


/* below is the rest of the layout! */


/* overall CSS */

* {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--leafcolor) var(--textcolor);
}

body {
    background-color: var(--boxbgcolor);
    background-image: url(../images/acbg.jpg);
}

::selection {
    background-color: var(--contrastcolor);
    color: var(--bordercolor)
}

a {
    font-weight: bold;
    color: var(--linkcolor);
}

a:visited {
    color: var(--bordercolor);
}

a:hover,
a:focus {
    color: var(--textcolor)
}

button {
    cursor: pointer;
    background-color: var(--contrastcolor);
    font: inherit;
    font-size: smaller;
    border: 1px var(--bordercolor) solid;
    border-radius: 10px;
    padding: 6px;
}

button:active {
    filter: brightness(80%);
}

blockquote {
    border-left: 5px solid var(--contrastcolor);
    padding-left: 20px;
    text-align: left;
}

ul {
    padding-left: 80px;
    text-align: left;
    list-style-position: inside;
}

ol {
    list-style-position: inside;
    padding-left: 80px;
}

img {
    max-width: 100%;
}

summary {
    cursor: pointer;
}

hr {
    width: 50%;
    border-top: var(--bordercolor) 1px solid
}

img {
width: 200px;    
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

h3 {
    text-align: center;
}

.button {
 text-decoration: none;
 cursor: pointer;
 background-color: var(--contrastcolor);
 font: inherit;
 font-size: smaller;
 border: 1px var(--bordercolor) solid;
 border-radius: 10px;
 padding: 6px;
 max-width: 150px;
 text-align: center;
 color: black;
 font-weight: bold;
}

.button:hover {
    filter: brightness(80%);
    color: black;
}


.container {
    margin: auto;
    margin-bottom: 10px;
    background-color: var(--leafcolor);
    max-width: 700px;
    height: max-content;
    text-align: center;
    color: var(--textcolor);
    border: 1px solid var(--bordercolor);
    border-radius: 10px;
}


/* this is for the three miniboxes. they're all in a container called topright. */

.topright {
    position: absolute;
    right: 150px;
    width: 250px;
    top: 170px;
}

.topright ul {
    padding-left: 0;
}

.topright details {
    position: absolute;
}

.topright summary {
    background: var(--leafcolor);
    border: 1px solid var(--bordercolor);
    border-radius: 5px;
    padding: 2px;
    padding-left: 15px;
    padding-right: 20px;
    width: fit-content;
    list-style-type: "+ ";
}

.topright details[open] summary {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: none;
    list-style-type: "- "
}

.updatescontent {
    background-color: var(--boxbgcolor);
    color: var(--bordercolor);
    height: 200px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid var(--bordercolor);
    position: relative;
    z-index: 3;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--textcolor) var(--bordercolor);
    padding: 15px;
    text-align: left;
    font-size: small;
    width: 250px;
}

.updatescontent p {
    margin-top: 0;
}

#two {
    margin-top: 50px;
    margin-left: 0px;
}

#three {
    margin-top: 100px;
}

#four {
    margin-top: 150px;
}

#vines {
    margin-top: -20px;
    z-index: 1;
    position: absolute;
    pointer-events: none;
}

.cards {
display: flex; 
justify-content: center;    
}

/* end of top right miniboxes. */

@media screen and (max-width:1200px) {
.topright {
        top: unset;
        bottom: 410px;
        left: 10px;
        height: auto;
    }

    #one,
    #two,
    #three,
    #four {
        margin: unset;
        position: static;
    }
.container {
    margin-top: 75px;
}}