@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");

*{
  font-family: "Nunito", sans-serif;
}


body{
  background: seashell;
  overflow:hidden;
}

h1{
  text-align: center;
  font: 50px "Nunito", sans-serif;
  color: #333;
}

.form-style {
  margin:10px auto;
  width: 400px;
  padding: 20px 12px 10px 20px;
  font: 14px "Nunito", sans-serif;
  color: #333;
}

.form-style td {
  padding: 0;
  display: block;
  list-style: none;
  margin: 10px 0 0 0;
  color: #333;
}

.form-style label{
  margin:0 0 3px 0;
  padding:0px;
  display:block;
  font-weight: bold;
}

.form-style .required{
  color:red;
}
/*.form-style input[type=submit],*/ .form-style input[type=reset]{
  background: #333;
  padding: 8px 15px 8px 15px;
  border: none;
  color: #fff;
}
/*.form-style input[type=submit]:hover,*/ .form-style input[type=reset]:hover{
  background: white;
  color:#333;
  -moz-box-shadow: 0 0 15px white;
  -webkit-box-shadow: 0 0 15px white;
  box-shadow: 0 0 15px white;
  transition: all 0.5s ease;
 font-weight: bold;
}
.form-style .field-textarea{
  height: 100px;
  color: #333;
}
.form-style input[type=text], 
.form-style input[type=email],
.form-style input[type=number],
textarea{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  color: #333;
  border: 1.1px dashed black;
  padding: 7px;
  margin:0px;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;  
}
.form-style .long{
  width: 100%;
}
.form-style input[type=text]:focus, 
.form-style input[type=email]:focus,
.form-style input[type=number]:focus,
.form-style textarea:focus{
  -moz-box-shadow: 0 0 8px #b6b6b6;
  -webkit-box-shadow: 0 0 8px #8e8e8e;
  box-shadow: 0 0 8px #ffffff;
  border: 1.1px solid #ffffff;
}
.error{
  color: #D8000C;
  background-color: transparent;
}
.form-style button[type=submit]{
    background: #333;
    padding: 8px 15px 8px 15px;
    border: none;
    color: #fff;
  }
  .form-style button[type=submit]:hover{
    background: white;
    color:#333;
    -moz-box-shadow: 0 0 15px white;
    -webkit-box-shadow: 0 0 15px white;
    box-shadow: 0 0 15px white;
    transition: all 0.5s ease;
   font-weight: bold;
  }

.social-menu ul{
  max-width: 100px;
    padding: 5px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    place-content: center;
    place-items: center;
    list-style: none;
}

.social-menu ul li{
    list-style: none;
    margin: 0 auto;
}

.social-menu ul li .fab{
    font-size: 25px;
    line-height: 40px;
    transition: .3s;
    color: #333;
}

.social-menu ul li .fab:hover{
    color: #0077b5;
}


.social-menu ul li .fa{
  font-size: 25px;
  line-height: 40px;
  transition: .3s;
  color: #333;
}

.social-menu ul li .fa:hover{
  color: #0077b5;
}


.social-menu ul li a{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
}

.social-menu ul li a:hover{
    transform: translate(0, -10%);
}
.social-menu ul li:nth-child(1) a:hover{
  background-color: #fff;
  -moz-box-shadow: 0 0 8px #b6b6b6;
  -webkit-box-shadow: 0 0 8px #8e8e8e;
  box-shadow: 0 0 8px #ffffff;
  border: none;
}
.social-menu ul li:nth-child(2) a:hover{
    background-color: #ffffff;
    -moz-box-shadow: 0 0 8px #b6b6b6;
    -webkit-box-shadow: 0 0 8px #8e8e8e;
    box-shadow: 0 0 8px #ffffff;
    border: none;
}





/* .glowing::before{
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(65deg,  rgb(210, 90, 90), rgb(222, 108, 108),rgb(244, 166, 166),rgb(244, 166, 166), rgb(222, 108, 108),rgb(210, 90, 90),rgb(210, 90, 90), rgb(222, 108, 108),rgb(244, 166, 166),rgb(244, 166, 166), rgb(222, 108, 108),rgb(210, 90, 90),rgb(210, 90, 90), rgb(222, 108, 108),rgb(244, 166, 166),rgb(244, 166, 166), rgb(222, 108, 108),rgb(210, 90, 90),rgb(210, 90, 90), rgb(222, 108, 108),rgb(244, 166, 166),rgb(244, 166, 166), rgb(222, 108, 108),rgb(210, 90, 90),rgb(210, 90, 90), rgb(222, 108, 108),rgb(244, 166, 166));
  background-size: 1000%;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  z-index: -1;
  animation: glower 500s linear infinite;
}

@keyframes glower {
  0% {
    background-position: 0 0;
  }
  
  40% {
    background-position: 500% 0;
  }
  
  100% {
    background-position: 0 0;
  }
} */

