.privacyinfo {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(10,10,10,0.9);
    color: white;
    text-align: center;
    padding: 1em;
    display:flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
  	transition: opacity 1s ease-in-out;
}
.hideprivacy {
	width: 3rem;
	font-size:130%;
	cursor:pointer;
}
.privacyinfo.hidden {
	opacity:0;
}
/*
footer {
	padding-bottom: 3rem;
}
*/