body {
  background-color: black;
  text-align: center;
}
.mini-logo {
  width: 150px;
  height: 150px;
}
.logo {
  display: block;
  margin: auto;
  padding-right: 120px;
  width: 550px;
}
p {
  font-size: 20px;
  margin-bottom: 0;
  background: linear-gradient(
    to right,
    #858489 20%,
    #e7e4ef 30%,
    #858489 70%,
    #b9b9b9 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
a {
  text-decoration: none;
}
i {
  font-size: 24px;
  padding: 4px;
}
.instagram {
  color: #c78bff;
}
.facebook {
  color: #3ffeff;
}
video {
  width: 1000px;
}

@media (max-width: 900px) {
  .logo {
    width: 400px;
  }
  video {
    width: 600px;
  }
}
