#contactHero{
    background-image: url('../img/contact_hero.jpg');
    background-position: right;
}


#submitContact {
    width: max-content;
    height: max-content;
    padding: 10px 20px;
    margin: auto;
    color: #FFF;
    background-color: var(--silvernail-blue);
}

form{
    margin-top: 5vh !important;
}

input, textarea {
    background-color: #ededed;
    padding: 10px 5px;
    font-size: 1.25rem;
    border: none;
    border-radius: 5px;
    width: 93%;
}

textarea{
    width: 100%;
    height: calc(100% - 3rem);
    resize:none;
}
.main_content{
    max-width: 1400px; 
    margin: 10vh auto 15vh;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 991px){
    input, textarea{
        width: 100%;
    }

    textarea{
        height: 30vh;
    }
}