body {
	font-family: Arial, sans-serif;
	color: white;
	display: block;
	margin: 0px;
	  background-color: rgb(0,0,0);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(to bottom right, #0c0024, #470045);
  position: fixed;
  top: 0;
  width: 100%;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background: linear-gradient(to bottom right, #130137, #570054);
}

.upload {
	margin: 16px;
	color: white;
}

.active {
  background-color: #04AA6D;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: auto;
}

.center {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.upload-center {
  display: flex;
	flex-direction: collumn;
  justify-content: center;
  align-items: center;
}

button {
  display: inline-block;
  padding: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background: linear-gradient(to bottom right, #0c0024, #470045);
  border-style: none;
  border-radius: 15px;
  box-shadow: 0px 9px #744972;
}

button:hover {
	background: linear-gradient(to bottom right, #0c0024, #470045);
}

button:active {
  background: linear-gradient(to bottom right, #0c0024, #470045);
  box-shadow: 0px 5px #452b44;
  transform: translateY(4px);
}

.button_image {
  display: block;
  width: 100px;
  height: 100px;
	border: 0;
  border-radius: 13px;
	object-fit: cover;
}

.overlay-container {
  position: relative;
	margin: 5px;
	margin-bottom: 15px;
	border-radius: 15px;
}

.text-overlay {
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 3px;
  right: 0;
  height: 100px;
  width: 100px;
  opacity: 0;
  transition: .5s ease;
  background: linear-gradient(to bottom right, #0c0024, #470045);
	border: none;
  border-radius: 10px;
}

.overlay-container:hover .text-overlay {
  opacity: 1;
}

.button-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
	-ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#menu {
	margin-bottom: 65px;
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1000;
  opacity: 10%;
}

input[type=button], input[type=submit], input[type=reset] {
  background: linear-gradient(to bottom right, #0c0024, #470045);
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background: linear-gradient(to bottom right, #130137, #570054);
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

.click-counter {
	color: white;
	text-align: right;
	mix-blend-mode: normal;
	font-size: 10px;
	position: absolute;
	top: 90%;
	left: 90%;
	transform: translate(-100%, -80%);
	text-shadow: 2px 2px 2px #000000, 0px 0px 1px #000000, 0px 0px 1px #000000;
}