*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    /* background-color: rgba(180, 162, 162, 0.26); */
    background-image: url(./images/black.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

.head{
    text-align: center;
    height: 130px;
    width: 100%;
    background-color: black;
    color: white;
    padding-top:35px ;
    /* font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: x-large; */
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: inherit;
    box-shadow: rgba(65, 40, 33, 0.836) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    position: sticky;
    top: 0;
    z-index: 3;
    animation-name: head;
    animation-iteration-count: 1;
    animation-duration: 4s;
    border-left: 15px solid orangered;
    /* border-right: 10px solid orangered; */
    
}
h1:hover{
    color: orangered;
}
.head img{
    width: 65px;
    height: 60px;
    margin-top: 0px;
    position: absolute;
    left: 37%;
    top: 10%;
}

    
p{
    color: orangered;
    font-size: large;
}
@keyframes head{
    0%{
        transform: translateY(-150px);
    }
    100%{
         transform: translateY(0px);
    }
}
span{
    color: white;
}
.content{
    width: 70%;
    height: 100vh;
    margin-left :400px;
    padding-top: 90px;
    z-index: 2;
    position: relative;
}
input{
    width: 60%;
    margin-bottom: 40px;
    height: 40px;
    cursor: pointer;
    border:1px solid grey;
    border-radius: 5px;
}
select{
    margin-bottom: 40px;
    width: 60%;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
}
p{
    font-size: larger;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 10px;
}
/* input[type="email"]{
    display: block;
} */
 a button{
    border: 1px solid grey;
    cursor: pointer;
    width: 30%;
    height: 40px;
    background-color: rgba(255, 68, 0, 0.781);
    font-size: x-large;
    border-radius: 10px;
    margin-left: 150px;
    margin-top: 30px;
    margin-bottom: 10%;
}
a button:hover{
    background-color: orangered;
}
button:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
input:hover{
    border: 2px solid orangered;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
select:hover{
    border: 2px solid orangered;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
option{
    /* background-color: rgba(255, 68, 0, 0.678); */
    font-size: larger;
}
input:focus::placeholder{
    color: rgba(255, 68, 0, 0.719);
}
input{
    font-size: medium;
}


@media  screen and (max-width:575px)  {
    
    body{
        height: 130vh;
    }
     .head img{
        /* position: absolute;
        left: 13%; */
        margin: auto;
        
    }
    .head h1{
        position: relative;
        top: 50%;
        margin-left: auto;
    }
     .content {
    margin-left: auto;
   }
   a button{
    margin-left: 40px;

   }
 
}


@media screen and (min-width:992px) and (max-width:1199px){
    .content{
        margin-left: auto;
    }
    a button{
        margin-left: 90px;
        margin-bottom: 10%;
    }
}

