@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

.donorschoose {
    position: fixed;
    top: 6px;
    left: 6px;
    opacity: .8;
    z-index: 5;
    float: right;
	background: black;
	color: black;
	-webkit-text-stroke: 1px white; /* width and color */
    font-family: "Impact";
	padding: 15px;
	margin: 15px;
	border-radius: 15px;
	border: white 2px solid;
	display: flex;
  	justify-content: center; /* Centers Horizontal (Left/Right) */
  	align-items: center;     /* Centers Vertical (Top/Bottom) */
}

.donorschoose:hover {
    transform: scale(1.1);
    opacity: 1;
    transition-duration: .5s;
}


.donorschoose a:hover {
    color: white;
    transition-duration: .5s;
}

.donorschoose a {
            font-family: "Impact";
    color: black;
	font-size: 2em;
	text-decoration: none;
}