
@charset "UTF-8";
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
* {
  box-sizing: border-box;
  margin: 0;
}

header {
  text-align: center;
  padding: 50px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

body {
  margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #222;
    perspective: 300px;
    font-family: 'Quicksand', cursive;

}

h1{
    font-family: 'verdana', cursive;
    font-size: 4rem;
    text-align: center; 
    margin: 0;
}

ul {
  list-style-type: none;
  display: flex;
  width: 1000px;
}

li a {
  text-decoration: none;
  color: #ffffff;
  padding: 30px 60px;
  font-family: verdana;
  font-weight: lighter;
  font-size: 25px;
  z-index: 1;
  transition: width 3s;
  transition: 3s;
}

li a:hover {
  text-shadow: 2px 2px 18px #ffffff;
  transition: 2s;
}

.box {
    position: absolute;
    background: linear-gradient(90deg, #fc466b, #3f5efb);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    animation: example 8s infinite alternate;
    filter: blur(100px);
}

@keyframes example {
    0%{
        transform: rotatey(30deg) rotate(-25deg) translateZ(100px);
    }
    25%{
        transform: rotateY(-30deg) translateZ(100px);
    }
    50%{
        transform: rotateX(-50deg) translateZ(-100px);
    }
    75%{
        transform: rotateX(-50deg) translateZ(-100px);
    }
    100%{
        transform: rotateX(20deg) translateZ(0);
    }
}

.navigation {
  position: absolute;
  top: 52%;
  left: 59%;
  transform: translateX(-50%) translateY(-50%);
}


@keyframes animacionTitulo {
  from {
    transform: translateX(-20px);
  }
  to {
    transform: translateX(20px);
  }
}

.animated-link::after {
  content: '';
  display: block;
  width: 0px;
  height: 2.5px;
  background: #ffffff;
  transition: width 1s;
  margin-left: 63px;
  border-radius: 5px;
  margin-top: 5px;
}

.animated-link:hover::after {
  width: 60%;
  transition: width 1s;
}

.animated-link1 {
  margin-left: 300px;
}

.dropdown {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: linear-gradient(-45deg, #99ffcc, #0dffff, #0d9eff, #0d0dff);
  background-size: 400% 400%;
  padding: 30px 30px;
  border-radius: 5px;
  margin-top: -400px;
  transition: 2s;
  box-shadow: 3px 3px 19px #14c2eb;
  animation: myColors 10s linear infinite;
}

@keyframes myColors {
  0% {
    background-position: 0% 50%;
  }
  
  50% {
    background-position: 100% 50%;
  }
  
  100% {
    background-position: 0% 50%;
  }
}

.active {
  transition: 2s;
  margin-top: 0px;
}

.dropdown .class-drp {
  color: #fff;
  font-family: verdana;
  font-weight: lighter;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}

.class-drp:hover {
  animation: mymove 1.5s linear;
}

@keyframes mymove {
  0% {
    opacity: .1;
    text-shadow: 2px 2px 18px #fff;
  }
  
  100% {
    opacity: 1;
  }
}

@media(max-width: 700px) {
  .navigation {
    position: absolute;
    top: 55%;
    left: 140%;
    transform: translate(-50%, -50%);
    margin-left: 100px;
  }
  
  .fa-home   {
    position: absolute;
    transform: translate(50%, -50%);
    top: 28%;
    left -100%; 
    margin-left: -10px;
  }
}

@media(max-width: 120px) {
  .fa-home   {
    position: absolute;
    transform: translate(50%, -50%);
    top: 28%;
    left 90%; 
  }
}

#active:hover {
  text-shadow: 2px 2px 25px #0000ff;
}

#active {
  cursor: pointer;
}

#another-link {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 52%;
  left: 20%;
}

@media(max-width: 767px) {
  .nav {
    position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  }
}

@media(max-width: 767px) {
  .navigation {
    margin-left: 58px;
    margin-top: 30px;
  }
}