.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  min-width: 100%; 
  min-height: 100%; 
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(2px);
}
.personal {
  height: 200px;
  width: 200px;
  background-image: url(../img/headshot.png);
  background-position: center;
  background-repeat: no-repeat;
  filter: opacity(0.95);
}
.personal:hover {
  transition: 0.3s;
  filter: opacity(0.8);
}
.homepage-center{
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
	z-index: 10;
}
.overlay {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  background: url(../img/overlay.png);
  z-index: 1;
}
::selection {
  background-color: #3fb2ed;
}
.button:hover{
  transition: 0.4s;
  color: #3fb2ed !important;
}
