

.sectionOne {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #1b1b1b;
    z-index: 2;


    background-color: #f3f3f3;;
    background-image: url("../image/background.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 1000px;            /* will match image height */

    
}



/* Text styling */
.sectionOne h1 {
    position: relative;
    font-weight: 800;
    font-size: 70px;
    width: 80%;

    margin: 20px auto;
    font-family: "Raleway", sans-serif;
    text-align: center;
}

.sectionOne p {
    position: relative;
    font-size: 20px;
    width: 70%;
    margin: 20px auto;
    z-index: 3;
    text-align: center;
}

