#start {
    padding-top: 8%;
}

h1 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 2px;
}

h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 2px;
}

p {
    font-size: 22px;
    padding-left: 10px;
    margin: 5px, 10px;
    line-height: 1.5;
}

.heading {
    background-color: #225045;
    color: #ECEBE4;
    padding: 5px;
    border-radius: 5px;
    width: 80%;
    margin: 0;
}

.contact-h1 {
    margin-bottom: 15%;
}

.main-table th {
    width: 40%;
}

.main-th {
    position: absolute;
}

#th-right {
    width: 50%;
    right: 5%;
}

.contact-div {
    padding-left: 10%;
}

.contact-table th{
    padding-top: 15%;
}

.email-form {
    width: 100%;
}

.contact-line {
    margin-top: 90px;
}

.email-form {
    padding-right: 5%;
}

.email-table th {
    width: 300px;
    padding-left: 2%;
    padding-right: 2%;
}

.email-p {
    font-size: 20px;
    padding-left: 10px;
    margin: 3px, 8px;
    line-height: 1;
}

input {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    border: 1px solid #225045;
    outline: none;
    border-radius: 4px;
    width: 180px;
}

input:focus {
    border: 2px solid #225045;
  }

#textarea {
    font-family: 'Nunito', sans-serif;
    border: 1px solid #225045;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    resize: none;
    border-radius: 4px;
}

.send-button {
    background-color: #225045;
    border: none;
    color: white;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
}

.send-div {
    float: left;
    margin: 0;
}

.send-button p {
    margin: 12px 14px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 14px;
}

/* TABLET VIEW */
@media (max-width: 1024px) {
    #start {
        margin-top: 2%;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 18px;
    }
    #textarea {
        width: 100%;
    }
}

/* PHONE VIEW */

@media (max-width: 560px) {
    .main-table th {
        width: 100%;
    }
    .contact-div {
        padding-left: 0;
        text-align: center;
    }
    .th-right {
        width: 0%;
    }
    .email-form {
        display: none;
    }
    .contact-h1 {
        margin: auto;
        margin-bottom: 15%;
    }
}