/* front image */
#logo-with-intro{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content:start;
}

.blur-image{
    background-color:rgba(255,255,255,0.7);
    height:100%;
    padding: 100px;
}

#contact-text{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-image: url("../Images/Contact us images/contact us background image in contact.jpg");
    background-size: cover;
}

.blur-image h2{
    animation: contact 2s forwards 1s 1;

}

@keyframes contact {
    0%{
        margin-left: 0;
        transform: translateX(-80%);
    }

    100%{
        margin:auto;
        transform: translateX(0);
    }
}


#logo-with-intro h2{
    text-align: center;
    color:blueviolet;
    font-size: 2rem;
    font-weight: bolder;
    font-family: 'Readex Pro', sans-serif;
    padding: 100px 200px;


}

#logo-with-intro div p{
    font-size: 1.2rem;
    font-family:'Comic Sans MS', Arial;
    width:30vw;
    text-align: center;
    margin: auto;


}

/*background for body */
body{
    overflow-x: hidden;
}

/* logo for text to contact */

#contact-container{
    display: flex;
    flex-direction: column;
    margin-left:40%;
    }

#contact-container i {
    font-size: 30px;
    color:rgb(109, 31, 197);
    text-decoration: none;
    /* padding: 10px 25px; */
    margin: 20px;

}

#contact-container .logo-with-text{
    display: flex;
    flex-direction: row;
    justify-self: center;
    align-items: center;
}

#contact-container .logo-with-text a{
    animation: logo 2s forwards 1s 1;
}

@keyframes logo{
    0%{
        margin-left: 0;
        transform: translateY(-100%);
    }

    100%{
        transform: translateY(0);
    }
}

#contact-container .logo-with-text p{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    align-items: center;
    margin-left: 30px;
    
}

#contact-us-invite{
    text-align: center;
    font-family: 'Readex Pro', sans-serif;
    padding: 50px 20px 20px 20px;
    font-size: 1.3rem;
    font-weight: 800;
    color: rgb(202, 29, 115);
    text-shadow: rgb(221, 226, 219) 1px 1px 10px;

}

/*form */

form{
    display: flex;
    flex-direction: column;
    margin: 20px 30%;
    justify-content: center;
    align-items: center;
}

form label{
    text-align: center;
    margin: 10px auto;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color:rgb(4, 78, 78);
}

input{
    width: 20vw;
    background-color: rgba(173, 161, 161,0.2);
    margin: auto;
    border-radius: 10px;
    height:30px;
    padding: 20px;
    font-family:'Comic Sans MS', Arial;
    font-weight: 600;
}

#message{
    height:100px;
}

#button{
    width: 5vw;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 5px auto;
    box-shadow: rgb(7, 189, 212) 1px 1px 20px 1px;
}


/*comments section */

#comments{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#comments p {
    font-family: 'Poppins', sans-serif;
    width:20vw;
    font-weight: 500 !important;
    padding-left: 100px;
    text-align: center;
    text-shadow: rgb(234, 235, 238) 1px 1px 15px !important;
}

#comments textarea{
    width: 50%;
    margin-top: 20px;
    margin-left: 80px;
    margin-bottom: 20px;
    background-color: rgb(237, 243, 245);
    border: solid 5px rgb(16, 31, 161);
    border-radius: 10px;
    font-family:'Comic Sans MS', Arial;
    padding: 20px;

}