nav {
    width: 100%;
    margin: 0;
    background-color: #240641;

  /* 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;
    background-color: #2E0A26;
    text-align: center;
    padding: 16px 16px;
    text-decoration: none;
    font-size: 1em;
}

.menuitem a:hover {
    font-size: 2em;
}

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


/* BASIC DOCUMENT SETUP */

* {
  border-style: border-box;
  margin: 0;
  padding: 0;
        background-color:#44B884;
}

/*links*/

a{ 
    color:#2E0A26;
    text-decoration:none ;
    padding: .3em;
    transition: .4s;
}

a:hover{
    text-decoration: underline;
    background-color:#2E0A26;
    color:#44B884;
    
}

h1 {
      font-family: "Rouge Script", cursive;
      font-size: 3.5em;
      

}
/*logo*/
.logo {
    border: 1px solid #2E0A26;
}

.logo:hover {
    border: 1px solid #2E0A26 ;
    border-radius: 50%;
}
/*Image stuff*/
img {
    border: .7em inset #2E0A26;
}

body {
    

main {
  background-size: 80%;

  font-family: "DynaPuff", system-ui;
  width: 90%;
  margin: auto;
  padding: 1em;
  padding-top: 5em;
    
}

}
/*FLOAT IMAGE TO RIGHT*/
.floatRight {
    float: right;
  padding-left: 2em;
  padding-bottom: 1em;
    width: 30%;
}


.floatRight img{
    width: 80%;
}

/*.floatLeft {*/
/*    float: left;*/
/*    padding-right: .5em;*/
/*    padding-bottom: 1em;*/
/*    width:10%;*/
/*    padding-top: .5em;*/
/*}*/

/*.floatLeft img {*/
/*    width: 45%;*/
/*}*/

.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: space;
  flex-wrap: wrap;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 20%;
  
/*   PLAY WITH THESE UNTIL YOU LIKE HOW YOUR BOXES LOOK  */
  margin: .5em;
  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: 90%;
  display: block;
  margin: auto;
}


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