form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    /* border: 1px solid yellow; */
}

form p{
    font-size: 18px;
    margin-bottom: 25px;
}

.emailInput{
    height: 3vh;
    width: 40vw;
    font-family: Times;
}

.emailMsgInput{
    margin-top: 2.5vh;
    height: 25vh;
    width: 40vw;
    font-family: Times;
}

.emailInput:hover, .emailMsgInput:hover{
    transform: scale(1.0125)
}

form button {
    margin-top: 2.5vh;
    width: 200px;
    height: 50px;
    background-color: black;
    color: white;
    font-weight: bold;
    font-family: Times;
}

form button:hover{
    background-color: #666;
    cursor: pointer;
    transform: scale(1.025)
}

@media(max-width: 768px) {
    .emailInput{
        width: 70vw;
    }
    .emailMsgInput{
        width: 70vw;
        height: 15vh;
    }
}