/* Dropdown Button */
.dropbtn {
background-color: #dd3777;
color: white;
padding: 10px;
font-size: 11px;
border: none;
cursor: pointer;
border-radius:15px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
float: right;
position: relative;
top: 30px;
right: 2%;
display: inline-block;
background-color: #dd3777;
border-radius:15px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
top:95px;
right: 0;
background-color: #dd3777;
min-width: 150px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius:15px;
}

/* Links inside the dropdown */
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
border-radius:15px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #DE5D83}

@media (min-width:800px) 
{
	/* Dropdown Button */
	.dropbtn {
	 padding:10px;
	 font-size:18px;
	}
	
	.dropdown-content {
 	top:130px;
	}
}
