*{
    margin: 0;
}
body{
    background-image: url("bgimg.jpg");
    background-repeat: no-repeat ;
    background-size: cover;
    width: 100%;
    height: 100%;
}
#form{
    width: 40%;
    border: 6px solid lightblue;
    text-align: center;
    color: white;
    background-color: blue;
    padding: 4%;
    margin: 5% auto;
}
#contact{
    font-size: 50px;
    text-shadow: 0px 0px 5px black;
    margin-bottom: 15px;
}
#contactdes{
    font-size: 16px;
    text-shadow: 0px 0px 5px black;
    margin-bottom: 15px;
}
#name, #email, #mobile, #message{
    width: 75%;
    height: 20px;
    border: none;
    border-bottom: 3px solid lightblue;
    margin-bottom: 10px;
    margin-left: 10px;
    background: transparent;
    color: white;
    outline-style: none;
}
#btn{
       width: 20%;
       height: 30px;
       border: 2px solid white;
       background: transparent;
       color: white;
       text-shadow: 0px 0px 5px black;
       margin-top: 25px;
       box-shadow: 4px 4px 8px black;
}
form ::placeholder{
    color: white;
    font-size: 16px;
}
#name:focus{
    background-color: transparent;
  }
