#contact{
    /* display: flex; */
    /* flex-direction: column; */
    /* flex-wrap: wrap; */
    width: 100%;
    background-color: white;
    color: black;
    /* align-items: center; */
    /* justify-content: center; */
    padding-top: 100px;
}
#contact>div{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

/* #contact>div>div>h1{
    font-size: 20px;
} */

#contact-m{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    /* background-color: aqua; */
}
.contact-section{
    width: 40%;
}
.contact-section>h1{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    /* text-shadow: 0px 0px 3px black; */
    border-bottom: 1px solid black;
    width: 80%;
    /* margin-left: 10px; */
}
.contact-section>p,.contact-section>a{
    font-size: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: black;
}
.contact-section>a:hover{
    color: rgb(234, 75, 75);
    border-bottom: 1px solid black;
}

#contact-message{
    width: 40%;
    height: 40vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    /* background-color: aquamarine; */
}
#contact-message>h1{
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    /* text-shadow: 0px 0px 6px black; */
    border-bottom: 1px solid black;
}
#contact-message>p{
    width: 80%;
    font-size: 30px;
}
@media only screen and (max-width: 1150px){
    #contact>div{
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
    }
    #contact-message{
        width: 80%;
        height: 30vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        /* background-color: aquamarine; */
    }
    #contact-m{
        width: 100%;
        display: flex;
        /* flex-direction: column; */
        flex-wrap: wrap;
        /* background-color: aqua; */
        align-items: center;
        justify-content: center;
    }
    .contact-section{
        /* background-color: antiquewhite; */
        width: 39%;
        margin-left: 25px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        /* align-items: center;
        justify-content: space-evenly; */
    }
}
@media only screen and (max-width: 490px){
    .contact-section>h1{
        font-size: 18px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: lighter;
        /* text-shadow: 0px 0px 3px black; */
    }
    .contact-section>p,.contact-section>a{
        font-size: 13px;
        margin-bottom: 15px;
        text-decoration: none;
        color: black;
    }
}

#form{
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(22, 30, 46);
    /* border: 1px solid white; */
}
form{
    width: 70%;
    height: fit-content;
    margin: 40px 0px 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(22, 30, 46);
    border: 1px solid white;
    box-shadow: 2px 0px 6px black;
}
.contact-form{
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    justify-content: center;
}
.contact-form>h2{
    font-size: 30px;
    margin-top: 30px;
    color: white;
}
.contact-form>input,.contact-form>textarea{
    color: white;
    width:70%;
    height: 30px;
    margin-top: 30px;
    background-color: rgb(22, 30, 46);
    border: none;
    border-bottom: 2px solid white;
    outline: none;
    font-size: 15px;
}
::placeholder{
    color: white;
    font-size: 15px;
}
.contact-form>button{
    width: 150px;
    background-color: rgb(22, 30, 46);
    height: 40px;
    box-shadow: 1px 0px 2px white;
    color: white;
    font-size: 15px;
    border: 1px solid white;
    margin: 40px 0px 40px 0px;
}
.contact-form>button:hover{
    cursor: pointer;
    box-shadow: 1px 0px 3px black;
    border: 2px solid black;
}