/* This is stylesheet.css an external style sheet */
  /* Style whole page */
  body{
  background-color: blue;
    color: grey;
     background-image: url(images/iridescent.jpeg);
    background-position: center center;
    background-repeat: repeat;
    background-size: 25em;
    
  margin: 0;
  }
  /* Wrapper div controls width of entire layout */
  #wrapper{
  background-color: #f5f5f8;
  width: 90%;
  min-width: 580px;
  max-width: 1400px;
  border: solid 5px #323299;
  border-radius: 10px;
  margin: 10px auto;
  }
  /* Page header at the top of each page */
  header{
  background-color: aqua;
  color: violet;
  height: 60px;
  line-height: 60px; 
  border-radius: 5px;
  }




/* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


  /* Navigation bar  */
  nav{
  width: 250px;
  float: right;
  }
  /* Navigation bar links (<a> tags) */
  nav a{
  text-decoration: none;
  color: blue;
  font-size: 115%;
  }
  /* Main content below the header and navbar */
  main{
  padding: 8px;
  }
  /* Level 1 and Level 2 headings */
  h1{
  margin: 0;
  color: #a349df;
  }
  h2{
  color: #521452;   
  }

/* Body Link colors */
a:link { color:  #842e84; }  
a:visited { color: grey; }  
a:hover { color: #c64cc6; }  
a:active { color: cyan; } 