*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
}
.image {
    background: url(../images/projects/dark-minimal-mountains.png);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.container h1{
  text-align: center;
  color: #ddd;
}
.border{
  width: 100px;
  height: 10px;
  background: #34495e;
  margin: 40px auto;
}

.contact-form{
  max-width: 600px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
}

.contact-form-text{
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  border: 0;
  background: #111;
  padding: 20px 40px;
  outline: none;
  color: #ddd;
  transition: 0.5s;
}
.contact-form-text:focus{
  box-shadow: 0 0 10px 4px #0df1ad;
}
textarea.contact-form-text{
  resize: none;
  height: 120px;
}
.contact-form-btn{
  float: right;
  border: 0;
  background: #00cb66;
  color: #000;
  padding: 12px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
  letter-spacing: 2px;
}
.contact-form-btn:hover{
  background: #0df1ad;
}








body{

    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a
{
    position: relative;
    display: inline-block;
    padding: 12px 50px;

    color: #0df1ad;
   
    text-decoration: none;

    overflow: hidden;
    transition: 0.5s;
    letter-spacing: 2px;
   -webkit-box-reflect: below 1px linear-gradient(transparent,#0005);
}

a:nth-child(1)
{
    filter: hue-rotate(290deg);
}
a:nth-child(3)
{
    filter: hue-rotate(110deg);
}



a:hover
{
    background: #0df1ad;
    color: #050801;
    box-shadow: 0 0 10px #0df1ad;
    box-shadow: 0 0 10px #0df1ad;
    box-shadow: 0 0 10px #0df1ad;
    box-shadow: 0 0 10px #0df1ad;
}





a span
{
    position: absolute;
    display: block;
}



a span:nth-child(1)
{
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#0df1ad);
    animation: animate1 1s linear infinite;
}
@keyframes animate1 {
    0%
    {
        left: -100%;
    }
    50%,100%
    {
        left: 100%;
    }
}




a span:nth-child(2)
{
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#0df1ad);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2 {
    0%
    {
        top: -100%;
    }
    50%,100%
    {
        top: 100%;
    }
}



a span:nth-child(3)
{
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#0df1ad);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}
@keyframes animate3 {
    0%
    {
        right: -100%;
    }
    50%,100%
    {
        right: 100%;
    }
}




a span:nth-child(4)
{
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#0df1ad);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4 {
    0%
    {
        bottom: -100%;
    }
    50%,100%
    {
        bottom: 100%;
    }
}