/* notifications */
.notification {
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-radius: 2px;
}

.notification .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 4px 8px;
  border-radius: 50%;
  background: red;
}

.frame {
  border: 50px solid #DEB887;
  position: center ;
  border-style: double;
}

/* gallery styles */
.gallery{
	text-align:center;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	flex-direction: row;
}
.gallery img{
	width:100%;
}
.gallery-link {
	text-align:center;
	text-decoration:none;
	color:black;
	border:rgba(0,0,0,0.1) solid;
	width:40%;
	margin:10px;
	border-radius:10px;
}
/* Make gallery a single vertical column when window is small */
@media (max-width: 800px) {
	.gallery {
		flex-direction: column;
	}
	.gallery-link {
		width:90%;
	}
}

/* icon */
.icon {
	width:20px;
	position:relative;
}
.iconhover:hover{
	background-color:gray;
	border-radius:50%;
}