.contact {
    color : white;
    background-color: black;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    background-image: url(../images/welcome.jpg);
    background-size : cover;
    background-position: 50% 10%;
    padding-bottom: 105px;
}

.contact-container{
    max-width: 500px;
    margin: auto;
    text-align: center;
}
.contact-field {
    border:solid 1px white;
    padding: 20px;
    margin: 15px;
    border-radius: 3px;
}

.contact-field input, .contact-field textarea {
    width: 100%;
    background: none;
    border : none;
    outline: none;
    color : white;
    font-size: 14px;
    
}

.contact-container input[type='submit']{
    background:none;
    border:none;
    border : solid 1px white;
    border-radius: 50px;
    padding : 10px 40px;
    margin : 20px;
    font-family: 'Changa', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    background-color: transparent;
    color : white;
    width: 200px;
}
.contact-container input[type='submit']:hover{
    font-weight: 600;
}

::placeholder {
    color: white;
    opacity: 1; /* Firefox */
    font-style: italic;
    font-size: 14px;
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: white;
    font-style: italic;
    font-size: 14px;
}