.contact-container
{
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    width: 95%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: nowrap;
}
.message-sent-container
{
    position: absolute;
    width: 95%;
    height: 700px;
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.message-sent-img
{
    width: 7%;
    height: auto;
}
.message-sent-span
{
    width: auto;
    margin: 30px;
    text-align: center;
    color: black;
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
}
.contact-title
{
    width: 100%;
    text-align: center;
    color: black;
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
}
.contact-form
{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.form-input
{
    width: 50%;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    border: 3px solid white;
    background-color: white;
    transition: all 0.2s ease-in;
    color: black;
}
.form-input::placeholder
{
    color: gray;
}
.form-input:focus
{
    border: none;
    border: 3px solid rgb(106,170,60);
    color: black;
    background-color: white;
}
.form-input:focus::placeholder
{
    color: gray;
}
.form-message
{
    height: 300px;
    text-align: left;
    resize: none;
}
.form-button
{
    font-size: 27px;
    font-family: 'Noto Sans', sans-serif;
    margin: 10px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background-color: rgb(106,170,60);
    border: 3px solid rgb(106,170,60);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease-in;
}
.form-button:hover
{
    background-color: rgb(231,231,231);
    color: rgb(64,57,108);
}
@media only screen and (max-width: 1000px) 
{
    .form-input
    {
        width: 95%;
        font-size: 16px;
    }
    
}