.contact {}

.section-my-contact {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
}

.contact-message h1 {
    color: white;
}

.contact-message h2 {
    background: linear-gradient(to right, #B1F60F, #3BCD4F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.single-contact-info {
    display: flex;
    flex-direction: row;
}

.single-contact-icon {
    margin: 0.1rem;
}

.single-contact-text {
    color: white;
    border-bottom-width: 1.5px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right, #B1F60F, #3BCD4F);
    border-image-slice: 1;
    margin-left: 0.3rem;
}

.single-contact-text a {
    color: white;
}

.section-your-contact {
    display: flex;
    flex-direction: column;
    background-color: #27272A;
    border-color: #3F3F46;
    border-style: solid;
    border-width: 1px;
}

.your-contact-form-title {
    color: #D1D5D8;
    background-image: linear-gradient(to right, #27272A, #27272A);
    margin-left: 1rem;
}

.form-validation-message {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1rem;
}



/* s-screen  */
@media screen and (max-width: 500px) {
    .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-content: space-evenly;
    }

    .contact-message h1 {
        font-size: 2rem;
    }

    .contact-message h2 {
        font-size: 1.5rem;
    }

    .single-contact-text {
        font-size: 1rem;
    }

    .section-your-contact {
        width: 80%;
        margin-top: 20px;
    }
}

/* m-screen  */
@media screen and (min-width: 501px) and (max-width: 1023px) {
    .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-content: space-evenly;
    }

    .contact-message h1 {
        font-size: 2.5rem;
    }

    .contact-message h2 {
        font-size: 1.5rem;
    }

    .single-contact-text {
        font-size: 1.3rem;
    }

    .section-your-contact {
        width: 80%;
        margin-top: 20px;
    }
}

/* l-screen  */
@media screen and (min-width: 1024px) {
    .contact {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 80%;
    }

    .section-my-contact {}

    .section-your-contact {
        width: 20rem;
    }

    .contact-message h1 {
        font-size: 2rem;
    }

    .contact-message h2 {
        font-size: 1.5rem;
    }

    .single-contact-text {
        font-size: 1.5rem;
    }
}