#contactDiv
{
    display: flex;
    flex-direction: row;
}

#contactInfo
{
    width: 30vw;
}

#contactForm
{
    width: 70vw;
}

.contactTitle
{
    font-family: 'Roboto';
    font-size: 3vh;
    padding: 5vh;
    padding-bottom: 0;
    padding-top: 10vh;
}

.contactText
{
    font-family: 'Roboto';
    padding: 5vh;
    color: rgba(48, 48, 49, 0.805);
}

#contactForm
{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.smallInput {
    margin-top: 3vh;
    width: 40vw;
    height: 3vh;
    border: none;
    background-color: rgb(230 231 235);
    padding: 1.2vh;
    /* color: #d6dbe0; */
}

.smallInput.firstContact
{
    margin-top: 10vh;
}

.bigInput {
    width: 40vw;
    height: 40vh;
    margin-top: 5vh;
    margin-bottom: 5vh;
    text-align: left;
    vertical-align: top;
    padding: 2vh;
    border: none;
    background-color: rgb(230 231 235);
    resize: none;
}
#sendButton
{
    margin-bottom: 3vh;
    width: 7vw;
    height: 3.4vh;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    font-family: 'Roboto';
    transition: all 0.3s ease;
}

#sendButton:hover
{
    background-color: rgb(5, 142, 196);
    color: white;
    border-color: rgb(5, 142, 196);
    cursor: pointer;
}