body{
    margin: 0px;
    padding: 0px;
    background-color: #9E897A;
}

.landingSection{
    background-image: url(Marlies4.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.Nav{
    background: linear-gradient(to bottom, rgb(0,0,0) 0%, rgba(255, 255, 255, 0)100%);
    height: 320px;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.unorderedList{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.listItem{
    list-style: none;
    transition: 0.5s ease;
}

.listItem:hover{
    transform: scale(1.05);
    letter-spacing: 5px;
}

.href{
 color: white;
 text-decoration: none;
}

.listText{
font-family: "urbanist";
font-size: 30px;
padding-left: 47px;
padding-right: 47px;
}

.header1{
    font-family: "Urbanist";
    color: white;
    font-size: 50px;
    margin-top: 25px;
    padding: 0px;
    font-weight: 300;
    text-align: center;
}

.paragraph1{
    color: white;
    font-family: "urbanist";
    text-align: left;
    font-size: 20px;
}

.text1{
    color: white;
    font-family: "urbanist";
    text-align: left;
    font-size: 30px;
    font-weight: 600;
}

.textSection{
    display: flex;
    justify-content: center;

}

.textHolder{
    width: 50%;
    text-align: center;
}

.contactButton{
    height: 90px;
    width: 420px;
    max-width: 80%;
    border-radius: 50px;
    border: solid white 5px;
    font-family: "urbanist";
    font-size: 32px;
    letter-spacing: 8px;
    color: white;
    background-color: #9E897A;
    transition: 0.5s ease;
}

.contactButton:hover{
background-color: white;
color: #9E897A;
}

.footer{
    background-color: black;
    margin: 0px;
    padding: 0px;
}

#footerText{
    padding: 50px;
    margin: 0px;
}

@media only screen and (max-width: 1500px) {

    .listText{
        font-family: "urbanist";
        font-size: 30px;
        padding-left: 30px;
        padding-right: 30px;
        }

}


@media only screen and (max-width: 1200px) {

    .listText{
        padding-left: 0px;
        padding-right: 0px;
        margin: 0px;
        font-size: 30px;
    }

    .listItem{
        font-family: "urbanist";
        text-align: center;
        }

    .unorderedList{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        row-gap: 20px;
        padding-top: 20px;
    }

    .textHolder{
        width: 90%;
    }

}

    @media only screen and (max-width: 500px) {

        .listText{
            padding-left: 0px;
            padding-right: 0px;
            margin: 0px;
            font-size: 25px;
        }
    
        .listItem{
            font-family: "urbanist";
            text-align: center;
            }
    
        .unorderedList{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            row-gap: 20px;
            padding-top: 20px;
        }


}