*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins','sans-serif';
}

.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(242, 170, 63, 0.7),rgba(151, 7, 96, 0.7)),url(/images/friends-holding.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact{
    width: 90%;
    max-width: 600px;
}

h1{
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}
span{
    color: #fff;
    font-size: 14px;  
    margin: 10px;
}
form{
    width: 90%;
    max-width: 600px;

}
.input-group{
    margin-bottom: 30px;
    position: relative;
    color: #fff;
    font-size: 18px;
}
input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 18px;
}
label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.2s;
}
i.fas {
    padding: 5px;
    color: #fff;
  } 
button{
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
}
button:hover{
    border: 1px solid #feaa66;
    background: #feaa66;
    color: rgba(81, 31, 0);
    transition: 1s;
}
input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top: -35px;
    font-size: 14px;
}
