body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

@keyframes animateBackground {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.container::before {
  content: '';
  z-index: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background-color: #000;
  opacity: 0;
  animation: 1s animateBackground;
}

.container {
  background-image: url(img/bg.png);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}

@keyframes animateOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container__hero {
  width: 300px;
  height: 300px;
  margin: auto 0;
  animation: 1.5s animateOpacity;
}
@media (max-width:760px){
  .container__hero{
    width: 250px;
    height: 250px;
  } 
}

.container__hero--logo {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0px 4px 118px #060606);
}

.container__links {
  z-index: 10;
  width: 100%;
  color: white;
  text-align: center;
  display: flex;
    justify-content: center;
    flex-direction: column;
  transform: translateY(-40px);
}

.container__links a {
  text-decoration: none;
  color: white;
  padding: 8px 15px;
  transform: scale(1);
  transition: transform .2s ease-in-out;
}

.container__links a:hover {
  transform: scale(.9);
  transition: transform .2s ease-in-out;
}

@keyframes animateRightToLeft {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

.container__footer {
  margin: 0 auto 20px auto;
  color: white;
  animation: 0.5s animateRightToLeft;
  z-index: 10;

}


.container__footer > div > a {
  padding: 10px;
  text-decoration: none;
}

a .fab{
  color: white;
}
a .far{
  color: white;
}
a .fas{
  color: white;
}
