body {
    background-color: 
#8DAB7F;
    color: #221E22;
      font-family: "Kedebideri", sans-serif;
     
      border: .7em solid #221E22;
     
      /*containers*/
      .container {
  display: flex;
  
/*   HOW BOXES ARE ALIGNED VERTICALLY: options include center, flex-start (aligns to the top), flex-end, and stretch  */
  align-items: center;
  
/*   HOW BOXES ARE POSITIONED HORIZONTALLY: options include center, space-around, or space-between */
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 34%;
  
/*   PLAY WITH THESE UNTIL YOU LIKE HOW YOUR BOXES LOOK  */
  margin: .3em;
  border-radius: 10px;
  padding: 1em;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM ANY HTML IMAGE TAGS INSIDE BOX DIVS */
.box img {
  max-width: 70%;
  display: block;
  margin: auto;
}


/* FORMATTING THE CITATIONS - DON'T COPY THIS IF YOU DON'T HAVE A "citation" CLASS */
.citation {
  text-align: center;
}
/*tiny link*/
}

.tiny {
   font-size: 75%;
}

/*hover effect*/
img {
}

img:hover {
    border: .9em solid black;
}

/*LINKS*/
a {

  color:#221E22;  
}
/*fonts*/
 h1 {
      font-family: "Henny Penny", system-ui;
 }   
    
/*menue bar*/
nav {
    width: 100%;
    margin: 0;
    background-color: #221E22;

  /* makes the menu "sticky" */
    position: fixed;
  
  /* makes sure the menu sticks to the very top of the page */
    top: 0;
}

.menu {
  /* takes away the bullet points from the list items */
    list-style-type: none;
  
    margin: 0 auto;
    padding: 0;
  
  /* adjust this to control the placement of the menuitems in the navbar */
    padding-left: 3em;
  }

.menuitem {
    float: left;
}

.menuitem a {
    display: inline-block;
    color: #FFFFFF;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1em;
}

.menuitem a:hover {
    background-color: #455d7a;
    font-size: 1em;
    color: #e3e3e3;
}
/*logo*/
.logo {
  /* play with the width and margin-top numbers until your logo looks the way you want it to */
  width: 2em;
  margin-top: .3em;
  
  /* you probably only need border: none if you have a border set for images in general */
  border: none;
}


/* BASIC DOCUMENT SETUP */

* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, p {
    margin-top: .5em;
    margin-bottom: .5em;
}
 

main {
padding: 2em;
  padding-top: 3em;
}
