.Contact-Me-Main-Section{
    display: flex;
    flex-direction: column;
    margin-top: 130px;
    margin-left: 150px;
    margin-right: 150px;
    /* background-color: lightblue; */
    align-items: center;
    
}

.contact-heading1{
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtext{
    text-align: center;
    font-size: 16px;
    font-weight: 100;
}
hr{
    border: none;
    height: 2px;
    border-radius: 2px;
    background-color: rgb(155, 79, 150);
}

.Contact-Me-Main-Box{
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.aman-profile-box {
    width: 300px;
    /* background-color: lightblue; */
}
.aman-profile {
    height: 400px;
    border-radius: 250px;
    border-style: solid;
    border-width: 2px;
}

.contact-me-form{
    width: 600px;
    /* background-color: lightpink; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.first-last-name-row,
.contact-subject-row,
.message-submit-row{
    /* background-color: lightblue; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 500px;
    height: 100px;
    /* border-style: solid; */
    align-items: center;
    margin-bottom: 10px;
}

.first-last-name-row div,
.contact-subject-row div,
.message-submit-row div
{
    margin-bottom: 8px;
    font-size: 16px;
}

.first-last-name-row input,
.contact-subject-row input,
.message-submit-row textarea{
    width: 235px;
    height: 35px;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    background-color: rgb(245, 245, 245);
    font-size: 14px;
    padding-left: 10px;
}

.message-submit-row div{
    margin-top: 25px;
}

.message-submit-row textarea{
    width: 494px;
    height: 100px;
    vertical-align: top;
    text-align: left;
    resize: none;
    padding-top: 5px; 

}

.first-last-name-row input:hover,
.contact-subject-row input:hover,
.message-submit-row textarea:hover{
    border-width: 2px;
}

.submit-button{
    margin-top: 50px;
    height: 50px;
    width: 150px;
    font-size: 16px;
    border-radius: 25px;
    border-style: none;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 30px;
}

.submit-button:hover{
    background-color: rgb(155, 79, 150);
    font-size: 18px;
    width: 160px;
    
}






@media (max-width:600px) {
    .Contact-Me-Main-Section {
        display: flex;
        flex-direction: column;
        margin-top: 200px;
        margin-left: 0px;
        margin-right: 0px;
        /* background-color: lightblue; */
        align-items: center;
    }
    
    .contact-heading1 {
        text-align: center;
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .contact-subtext {
        text-align: center;
        font-size: 16px;
        font-weight: 100;
    }

    hr {
        border: none;
        height: 2px;
        border-radius: 2px;
        background-color: rgb(155, 79, 150);
    }

    .Contact-Me-Main-Box {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        width: 330px;
    }

    .aman-profile-box {
        width: 330px;
        text-align: center;
        /* background-color: lightblue; */
    }

    .aman-profile {
        height: 150px;
        width: 150px;
        object-fit: cover;
        object-position: 0px -12px;
        border-radius: 50%;
        border-style: solid;
        border-width: 2px;
        /* display: none; */
        
    }

    .contact-me-form {
        width: 330px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .first-last-name-row,
    .contact-subject-row,
    .message-submit-row {
        /* background-color: lightblue; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 330px;
        height: 100px;
        /* border-style: solid; */
        align-items: center;
        margin-bottom: 70px;
    }

    .first-last-name-row div,
    .contact-subject-row div,
    .message-submit-row div {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .first-last-name-row input,
    .contact-subject-row input,
    .message-submit-row textarea {
        width: 330px;
        height: 35px;
        border-radius: 2px;
        border-style: solid;
        border-width: 1px;
        border-color: black;
        background-color: rgb(245, 245, 245);
        font-size: 14px;
        padding-left: 10px;
        margin-bottom: 10px;
    }

    .message-submit-row div {
        margin-top: 0px;
    }

    .message-submit-row textarea {
        width: 330px;
        height: 100px;
        vertical-align: top;
        text-align: left;
        resize: none;
        padding-top: 5px;

    }

    .first-last-name-row input:hover,
    .contact-subject-row input:hover,
    .message-submit-row textarea:hover {
        border-width: 2px;
    }

    .submit-button {
        margin-top: 5px;
        height: 50px;
        width: 150px;
        font-size: 16px;
        border-radius: 25px;
        border-style: none;
        cursor: pointer;
        transition: 0.2s;
        margin-bottom: 20px;
        background-color: rgb(155, 79, 150);
    }

    .submit-button:hover {
        font-size: 18px;
        width: 160px;
    }
}
