#ContactTitle {
    text-align: center;
}

/* FORM!!!!! */
form {
    display: flex;
    flex-flow: wrap row;
    width: 90%;
    margin: auto;
    background-color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

form p {
    width: 100%;
    padding: 5px;
    margin-left: 5px;
}

form div {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}
form input , textarea , button{
    padding: 5px;
    width: 100%;
    margin: 10px;
    font-size: 20px;
    transition: border 30ms;
    min-height: 40px;
    border: 2px solid #888888;
}

.required {
    /* Using a class because I can't get the psuedo element to work ;-; */
    /* wait- i realized that putting it on the input won't work. I need it on the paragraph tags D: */
    color: red;
}

input:hover, textarea:hover {
    border: 2px solid #777777;
}
input:focus , textarea:focus {
    border: 2px solid #5d5d5d;
    outline: none;
}

textarea {
    resize: vertical;
    height: 250px;
}

button {
    height: 50px;
    background-color: rgb(255, 255, 255);
}

@media screen and (max-width: 410px) {
    #ContactTitle p {
        font-size: 14px;
    }
    form p {
        padding: 2px;
        font-size: 16px;
    }
    form input , textarea , button {
        font-size: 16px;
        min-height: 20px;
        margin: 5px;
    }
    textarea {
        height: 150px;
    }
}