body{ display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
.contact_container{
    height:195vh;
    width:85vw;
    padding-top:50px;
    text-align: center;
    max-width: 90vw;
    margin: auto;
    border-left: 4px solid #393e41;
    border-right: 4px solid #393e41;
}
.aboutus_grid{
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-auto-rows: minmax(200px, auto);
    gap: 0.8rem;
    padding:40px;
    margin: 0;
    text-align: center;
    grid-template-areas:
    "h1 h1 h1 h1 h1 h1"
    ". form form form form ."
    ". form form form form ."
    ". form form form form .";
    background-color:#f6f7eb;
    font-size: 20px;
}
.h1{
    grid-area:h1;
    margin:20px 80px;
    letter-spacing: 1.5px;
    grid-area:h1;
    border-bottom:0;
    text-align: center;
    color:#f6f7eb;
    padding:15px;
    background-color:#e94f37;
    border-radius: 50px;
    font-size: 4em;
}
.form{
    grid-area:form;
    justify-content: center;
    text-align: center;
}
.table{
    float:center;
    height:80vh;
    width:50vw;
    padding: 5px;
    text-align:center;
    border-radius: 8px #e94f37 ;
    justify-content: center;
}
.table_tr{
    text-align: center;
    justify-items: center;
}
.table_text{
    text-align: center;
    font-size: 40px;
}