* {
    margin: 0%;
    padding: 0%;
}

/* === contact HEADER === */
.contact-header {
    width: 100%;
    height: 50vh;
    position: relative;
    background: url("../images/signlanguege1.png") fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Teal overlay */
.contact-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 14, 0.685);
    /* same teal tone */
    z-index: 1;
}

/* Curved white bottom shape */
.contact-header::after {
    content: "";
    position: absolute;
    bottom: -45px;
    /* pushes the curve down */
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 50% 50% 0 0;
    transform: scaleX(1.4);
    z-index: 2;
}

/* Text */
.contact-header h1 {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 48px;
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
}

