/* 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 {
  background-image: url("https://i.pinimg.com/736x/15/fb/75/15fb75c769ed7e81026f46c12c716880.jpg");
  background-repeat:repeat-x;
  background-attachment: local;
  margin:20px;
  color: black;
  font-family: Verdana;
}
header{
  margin:20px;
  height:40px;
}
h1 {
  text-align: center;
  font-family: "Henny Penny";
    font-weight: 400;
    font-style: normal;
}

h2{
  font-family: "Henny Penny";
    font-weight: 400;
    font-style: normal;
}
    
ul {
    list-style-type: none;
    margin:20px;
    padding: 0;
    overflow: hidden;
    background-color:#2d93cf;
}
ul li {
    overflow: hidden;
    float: left;
    margin-bottom: 10px;
    text-align: center;
    color: #ff6666;
    font-family: "Henny Penny";
    font-weight: 400;
    font-style: normal;
}
ul li a {
  display: block;
  color: white;
  text-align: center;
  font-size: 20px;
  margin: 16px;
  text-decoration: none;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 65%;
}
div.leftcolumn div {
  padding:0px;
  border-style:none;
}
div.rightcolumn div {
  padding:0px;
  border-style:none;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 20%;
  
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
div {
  background-color:white;
  margin:20px;
  padding: 20px;
  border:solid;
  
}
.blinkie {
  width:100%;
  height:20px;
  margin-left:-20px;
  margin-top:-20px;
  border:none;
  
}
.blinkie img {
  height:auto;
  width:100%;
}
.rightscrollbox {
  float:left;
  width:20%;
  height:400px;
  overflow-y:scroll;
}
