.contact-form {
    display: block;
    text-align: left;
    font-weight: 400;
    color: var(--light-text);;
    line-height: 1.5em;
    font-size: 1.25em;
    margin: .25em auto auto;
    width: 90%;
    max-width: 1200px;
}

.contact-form label {
    display: block;
    width: 100%
}

.contact-form input[type="text"], input[type="email"], input[type="tel"] {
    display: block;
    width: 100%;
    height: 2em;
    background-color: #f7f7f7;
    border: 1px solid grey;
}

.contact-form input[type="submit"] {
    display: block;
    width: 25%;
    min-width: 200px;
    height: 2em;
    background-color: var(--dark-bg);
    color: white;
    border: 1px solid grey;
}

.contact-form input:focus {
    outline: none;
    border: 2px solid var(--primary);
}

.contact-form textarea {
    resize: none;
    width: 100%;
    height: 8em;
    background-color: #f7f7f7;
    border: 1px solid grey;
}

.contact-form textarea:focus {
    outline: none;
    border: 2px solid var(--primary);
}

.contact-form-submission {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 400px;
    max-width: 800px;
    width: 95%;
}

.contact-form-submission p {
    font-size: 1.45rem;
    font-family: "Roboto Slab", sans serif;
}