body{
    margin: 0px;
    padding: 0px;
    background-color: #9E897A;
}

.landingSection{
    background-image: url(/images/Marlies5.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.header1{
    font-family: "Urbanist";
    color: white;
    font-size: 50px;
    margin-top: 25px;
    padding: 0px;
    font-weight: 300;
    text-align: center;
}

.text1{
    color: white;
    font-family: "urbanist";
    text-align: left;
    font-size: 30px;
    font-weight: 600;
}

.line {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
}

.textSection{
    display: flex;
    justify-content: center;
}

.textHolder{
    width: 50%;
    text-align: center;
}

.input1 {
    height: 25px;
    width: 70%;
    border: #ffffff solid;
    border-radius: 20px;
    font-family: "urbanist";
    background-color: #9E897A;
}

.text2 {
    font-family: "urbanist";
    color: #ffffff;
    padding: 0px;
    margin: 0px;
    font-size: 20px;
}

.textarea {
    width: 70%;
    height: 100px;
    border: white solid;
    border-radius: 20px;
    font-family: "urbanist";
    background-color: #9E897A;
}

.button1 {
    border-radius: 15px;
    height: 50px;
    width: 150px;
    border: none;
    background-color: #9E897A;
    border: solid 3px white;
    font-family: "urbanist";
    font-size: 20px;
    transition: 0.5s ease;
    color: white;
}

.button1:hover{
    border: none;
    background-color: #ffffff;
    border: solid 3px white;
    color: #9E897A;
}



@media only screen and (max-width: 1300px) {

    .textHolder{
        width: 90%;
    }

}

@media only screen and (max-width: 500px) {


        .header1{
            font-size: 30px;
        }


}