.body-div {
    min-height: 100vh;
    padding-top: 10vh !important;
}


/* contact page */

.grid,
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 15px;
}

.text-div {
    margin: 0 auto;
    width: 75%;
    line-height: 1.6;
}

.social-links,
.social-texts {
    width: 100%;
}

.social-links a {
    color: #ebca66;
    font-size: x-large;
    padding: 4px;
    margin: 2px;
}

.social-links a:hover {
    opacity: 0.5;
    transition-duration: 0.2s;
}

.grid-width {
    width: 80%;
    margin-bottom: 20px;
}

.grid-input {
    width: 70%;
    padding: 10px;
    outline: none;
}

.grid-lastInput {
    width: 100%;
    padding: 10px;
    outline: none;
}

textarea {
    resize: none;
    height: 30vh;
}

.form-fields {
    background-color: whitesmoke;
    border:none;
}

.large-font {
    font-size: 28px;
}

.small-font {
    font-size: 18px;
}
.contact form{
   
}


/* mobile responsiveness */

@media only screen and (max-width: 641px),
only screen and (max-device-width: 641px) {
    body,
    html {
        overflow-x: hidden;
    }
    .grid {
        display: block;
        padding-top: 15px;
    }
    .grid-child {
        width: 100%;
    }
    .text-div {
        width: 80%;
    }
    .input-grid {
        padding-top: 8vh !important;
        display: block;
        width: 95%;
        margin: 0 auto;
        padding-bottom: 10vh;
    }
    .body-div {
        margin-right: 0;
    }
    .small-font {
        font-size: medium;
    }
    .form-fields {
        width: 100%;
    }
    .grid-width {
        width: 100%;
    }
}