

body{
    height: 100%;
    width: 100%;
    background-color: white;
    background-image: url("https://images.pexels.com/photos/317355/pexels-photo-317355.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    background-size: cover;
 
}


h1{

    margin: 100px;
    font-size: 80px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Steelfish Rg', 'helvetica neue',
                helvetica, arial, sans-serif;
    font-weight: 800;
    color: black;
    text-shadow: 1px 1px 4px white;
}



form{
    width: 70%;
    display: grid;
    margin-inline: auto;
    background-color: #a0a8aa;
    color: white;
    margin-bottom: 140px;
    margin-top: 140px;
}

.form{
    display: block;
    margin-top: 40%;
    margin-block-start: 3%;
    margin-inline-start: 20%;
    font-size: 1.8em; 
}
.form h3{
    margin-bottom: 10%;
    margin-top: 9%;
    font-size: 1.4em;
    
}

.form-control {
    display: block;
    justify-content: center;
    width: 70%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: transparent;
    border-width: 0 0 2px;
    border-color: white;
}




button {
    width: 229px;
    height: 38px;
    margin-block-start: 30px;
    margin-inline-start: 20%;
    margin-bottom: 10%;
    color: white;
    border-radius: 20px;
    background-color: rgb(62, 63, 63);
    border-color: white;
    font-size: 1.5em;
}

button:hover{
    background-color: gray;
    cursor: pointer;
}

::placeholder{
    color: white;
    font-size: 1.3em;
}

input {
    outline: 0;
    color: white;
}

textarea{
    outline: 0;
    color: white;


}

#textarea{
    border-width: 2px;
    border-radius: 25px;
}


@media screen and (max-width: 700px) {

    form {
        width: 66%;
        display: grid;
        margin-inline: auto;
        background-color: #a0a8aa;
        color: white;
        margin-bottom: 14%;
        margin-top: 15%;
    }

    .form {
        display: block;
        margin-top: 25%;
        margin-block-start: 1%;
        margin-inline-start: 11%;
        margin-inline-end: -25%;
        /* font-size: 1.8em; */
    }

    .form h3 {
        margin-bottom: 10%;
        margin-top: 9%;
        font-size: 17px;
    }

    .form-control {
        display: block;
        justify-content: center;
        width: 70%;
        padding: 0.375rem 0.75rem;
        font-size: 8px;
        font-weight: 400;
        line-height: 1.5;
        background-color: transparent;
        border-width: 0 0 1px;
        border-color: white;
    }

    button {
        width: 156px;
        height: 31px;
        margin-block-start: 21px;
        margin-bottom: 10%;
        color: white;
        border-radius: 20px;
        background-color: rgb(62, 63, 63);
        border-color: white;
        font-size: 12px;
    }
}