/* input[type=text]{
  position: absolute;
  left: 50%;
  top: 63%;
  transform: translate(-50%,-50%);
  border:2px solid #aaa;
  border-radius:4px;
  outline:none;
  padding:25px;
  box-sizing:border-box;
  transition:.3s;
  font-size: 25px;
  font-weight: bold;
}

input[type=text]:focus{
  border-color:yellow;
  box-shadow:0 0 8px 0 yellow;
}

.button-hover {
position: relative;
width: 100px;
height: 40px;
min-width: 200px;
margin: 1em;
padding: 0.3em;
border: 1px;
border-color: white;
background: linear-gradient(120deg,#3498db,#8e44ad,#3498db);
cursor: pointer;
border-radius: 20px;
}

.button-hover::before,
.button-hover::after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: linear-gradient(to right, #56cbf2, #2f81ed);
border-radius: 20px;
transition: all .5s ease-in-out;

}

.button-hover:hover::before {
filter: blur(5px);
}

.button-hover:hover::after {
  filter: blur(15px);
}

.button-hover:hover {
  animation: hue 3s linear infinite;
}

@keyframes hue {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.button-hover span {
position: relative;
z-index: 3;
display: block;
padding: 1px;
font-family: 'Montserrat', sans-serif;
font-size: 1.2em;
font-weight: bold;
color: white;
text-transform: uppercase;
background-color: #fcfcfc00;
border-radius: 17px;
} */


.social-menu ul {
float: center;
  padding: 0;
  margin: 0;
  display: inline-flex;
}
.social-menu ul li {
  list-style: none;
  margin: 0 10px;
}
.social-menu ul li .fa {
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  transition: .5s;
}
.social-menu ul li .fa:hover {
  color: #ffffff;
}
.social-menu ul li a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  transition: 0.5s;
  transform: translate(0,0px);
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a:hover {
  transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.social-menu ul li:nth-child(1) a:hover {
  background-color: #3b5999;
}
.social-menu ul li:nth-child(2) a:hover {
  background-color: #55acee;
}
.social-menu ul li:nth-child(3) a:hover {
  background-color: #e4405f;
}
.social-menu ul li:nth-child(4) a:hover {
  background-color: #00ff62;
}
.social-menu ul li:nth-child(5) a:hover {
  background-color: rgb(253, 1, 199);
}