html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

body{

  background-size:cover;
  font-family:sans-serif;
  text-align:center;
  padding-top:3%
}

.content {
	width: 100%;
	background: rgba(255, 255, 255, 0.86);
	padding: 30px;
	text-align: center;
	z-index: 995;
  box-shadow:0 3px 36px 0 rgba(0, 0, 0, 0.6);
  display:inline-block;
  opacity:0.8;
  color:#666;
  text-decoration:none;
  transition:all 0.2s
}

.content:hover {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
    opacity:1;
    color: #444;
}
