body {
  background: white;
  background-color: #86228b
}
p {
  color: rgb(253, 204, 246);
}
h1 {
  font-weight: bold;
  color: rgb(253, 204, 246);
}
h3{
  color: rgb(253, 204, 246);
}
a{
  color: cornsilk;
}
ul{
  color: cornsilk;
}
img {
  float: left;
  width: 300px;
  margin: 10px;
  height: 300px;
  border-color: rgb(255, 82, 82);
  border-width: 4px;
  border-style: dotted;
  border-radius: 20px;
}
.text {
clear: both;
} 
.dropbtn {
  background-color: rgb(253, 204, 246);
  color: #86228b;
  padding: 8px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-style: italic; 
}
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980b9;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {background-color: rgb(253, 204, 246);}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: rgb(253, 204, 246);
}
