body {
  margin: 0;
  padding: 0;
}
video { 
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background: url('../images/bg.png') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}

.content{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  text-align: center;
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -90;
  background-size: cover;
  transition: 1s opacity;
  background: rgba(0,0,0,0.6);
}

.logo{
  width: 450px;
}

.fa {
  padding: 15px;
  font-size: 20px !important;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  width: 20px;
  background: white;
  color: black;
}

.fa:hover {
  opacity: 0.7;
}

@media screen and (max-device-width: 600px) {
  .logo { 
    width: 300px;
  }
}