body {
  /*background-color: darkgrey;*/
  background-image: url("/UIimg/bg.png");
  width: 70vw;
  margin: 0 auto;
    }

.header ul {
  display: inline-flex;
  list-style: none;
}

.header li {
  padding: 10px;
  background-color: white;
  border-top: 5px solid purple;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-bottom: -55px;
}
  
.header a {
  padding: 10px 10px 5px 10px;
  margin: -10px;
  border-top: 5px solid purple;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: black;
  text-decoration: none;
  }  

.header li:hover,
.header li:hover a,
.header li a:focus {
  color: white;
  background-color: purple;
  height: 10px;
  }

#landing {
  float: none;
  font-size: 1.5em;
  }

.blog {
  float: left;
  width: 60%;
  padding: 20px;
  background-color: white;
  border-top: 5px solid purple;
  border-radius: 30px;
  border-bottom: 5px solid purple;
  }
  
.blog img {
  width: inherit;
  max-width: 460px;
  }  
  
.blog h1 {
  display: inline-flex;
  } 
  
.blog h1 + h2 {
  display: block;
  float: right;
  font-size: 1em;
  }  
  

.divider {
  max-width: 500px;
  margin: 20px auto;
  border-bottom: 20px dotted purple;
  } 
  

.blog.floater {
  width: 30%;
  float: right;
  }

  
  