html {
	background-color: lightgreen;
}

/*Polaroid Image*/
div.polaroid {
  width: 80%;
  height:100%;
  background-color: white;
  border-width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
  margin-top: 30px;
  padding-top:10px;
}

div.container {
  text-align: center;
  padding: 10px 20px;
}

div.ex1 {
  margin: 20px;
  border: 1px solid black;
  outline: 2px solid darkgreen;
  outline-offset: 15px;
} 

div.ex2 {
  
  margin:20px;
  border: 2px solid black;
  outline: 5px dashed darkgreen;
  outline-offset: 3px;
} 

/*Drop Down Text*/
.dropdown {
  position: relative;
  font-size: 25px;
  padding: 45px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: orange;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  color:white;
  text-shadow: 1px 2px black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

footer{
	color:black;
}

footer a{
	color:black;
}

/*Polaroid*/
#borderimg { 
  border: 10px solid transparent;
  padding: 15px;
  border-image: url(border.png) 30 stretch;
}